-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
52 lines (50 loc) · 1.9 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
pipeline {
agent any
environment {
PATH = "${PATH}:${getTerraformPath()}"
AMI_ID = "stack-ami-${BUILD_NUMBER}"
VERSION = "1.0.${BUILD_NUMBER}"
RUNNER = "Mohamed"
}
stages{
stage('Initial Stage') {
steps {
script {
def userInput = input(id: 'confirm', message: 'Start Pipeline?', parameters: [ [$class: 'BooleanParameterDefinition', defaultValue: false, description: 'Start Pipeline', name: 'confirm'] ])
}
}
}
stage('terraform init'){
steps {
//sh "returnStatus: true, script: 'terraform workspace new dev'"
sh "terraform init"
slackSend (color: '#FFFF00', message: "STARTING TERRAFORM DEPLOYMENT ${env.RUNNER}: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})")
}
}
stage('terraform plan'){
steps {
//sh "returnStatus: true, script: 'terraform workspace new dev'"
//sh "terraform apply -auto-approve"
sh "terraform plan -out=tfplan -input=false"
}
}
stage('Final Deployment Approval') {
steps {
script {
def userInput = input(id: 'confirm', message: 'Apply Terraform?', parameters: [ [$class: 'BooleanParameterDefinition', defaultValue: false, description: 'Apply terraform', name: 'confirm'] ])
}
}
}
stage('Terraform Apply'){
steps {
//sh "returnStatus: true, script: 'terraform workspace new dev'"
//sh "terraform apply -auto-approve"
sh "terraform apply -input=false tfplan"
}
}
}
}
def getTerraformPath(){
def tfHome= tool name: 'terraform-14', type: 'terraform'
return tfHome
}