Skip to content

Instantly share code, notes, and snippets.

@cooltoast
Created January 11, 2021 18:24
Show Gist options
  • Save cooltoast/87ee681589a21040e4ced5b0e2e534a1 to your computer and use it in GitHub Desktop.
Save cooltoast/87ee681589a21040e4ced5b0e2e534a1 to your computer and use it in GitHub Desktop.
// A Jenkins Pipeline definition.
pipeline {
stages {
stage('Deploy Infrastructure') {
steps {
// Go into the Terraform directory.
dir("${WORKSPACE}/path/to/my/terraform") {
ansiColor('xterm') {
// Apply infrastructure changes.
sh "terraform apply -auto-approve"
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment