Skip to content

Instantly share code, notes, and snippets.

@pravargauba
Last active April 27, 2019 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pravargauba/b0dbc69e70f0f2dbe89c273685d6ef6a to your computer and use it in GitHub Desktop.
Save pravargauba/b0dbc69e70f0f2dbe89c273685d6ef6a to your computer and use it in GitHub Desktop.
stage('Approval') {
steps {
script {
def userInput = input(id: 'confirm', message: 'Apply Terraform?', parameters: [ [$class: 'BooleanParameterDefinition', defaultValue: false, description: 'Apply terraform', name: 'confirm'] ])
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment