Last active
January 20, 2025 07:39
-
-
Save gazoakley/87dcc16d28fd05acda4ba0a4be5ac387 to your computer and use it in GitHub Desktop.
Jenkinsfile for running Terraform
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent any | |
parameters { | |
string(name: 'environment', defaultValue: 'default', description: 'Workspace/environment file to use for deployment') | |
string(name: 'version', defaultValue: '', description: 'Version variable to pass to Terraform') | |
booleanParam(name: 'autoApprove', defaultValue: false, description: 'Automatically run apply after generating plan?') | |
} | |
environment { | |
AWS_ACCESS_KEY_ID = credentials('AWS_ACCESS_KEY_ID') | |
AWS_SECRET_ACCESS_KEY = credentials('AWS_SECRET_ACCESS_KEY') | |
TF_IN_AUTOMATION = '1' | |
} | |
stages { | |
stage('Plan') { | |
steps { | |
script { | |
currentBuild.displayName = params.version | |
} | |
sh 'terraform init -input=false' | |
sh 'terraform workspace select ${environment}' | |
sh "terraform plan -input=false -out tfplan -var 'version=${params.version}' --var-file=environments/${params.environment}.tfvars" | |
sh 'terraform show -no-color tfplan > tfplan.txt' | |
} | |
} | |
stage('Approval') { | |
when { | |
not { | |
equals expected: true, actual: params.autoApprove | |
} | |
} | |
steps { | |
script { | |
def plan = readFile 'tfplan.txt' | |
input message: "Do you want to apply the plan?", | |
parameters: [text(name: 'Plan', description: 'Please review the plan', defaultValue: plan)] | |
} | |
} | |
} | |
stage('Apply') { | |
steps { | |
sh "terraform apply -input=false tfplan" | |
} | |
} | |
} | |
post { | |
always { | |
archiveArtifacts artifacts: 'tfplan.txt' | |
} | |
} | |
} |
Hey, where can I find variables.tf file and other dependencies? Please share them it will be a great help.
Hi @gazoakley could you please explian below
stage('Approval') {
when {
not {
equals expected: true, actual: params.autoApprove
}
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @gazoakley it's very helpful..I have a doubt if we can add a stage in pipeline to import existing resources into terraform code..I mean is there any chance if we can have a stage where we can import resources in Jenkins pipeline.