-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
71 lines (60 loc) · 1.98 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
pipeline {
agent any
// parameters {
// credentials credentialType: 'com.cloudbees.jenkins.plugins.awscredentials.AWSCredentialsImpl', defaultValue: 'automation_terraform', name: 'AWS', required: false
// }
environment {
PATH = "${PATH}:${getTerraformPath()}"
}
stages{
stage('Initial Deployment Approval') {
steps {
script {
def userInput = input(id: 'confirm', message: 'Start Pipeline?', parameters: [ [$class: 'BooleanParameterDefinition', defaultValue: false, description: 'Start Pipeline', name: 'confirm'] ])
}
}
}
stage('Terraform Init'){
steps {
slackSend (color: '#FFFF00', message: "STARTED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})")
sh "terraform init"
}
}
stage('Terraform Plan'){
steps {
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 "terraform apply -input=false tfplan"
}
}
stage('Terraform Destroy'){
steps {
sh "terraform destroy -auto-approve"
}
}
}
post {
//Trigger on Success
success {
slackSend (color: '#3EB991', message: "SUCCESS: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})")
}
//Trigger on Failure
failure {
slackSend (color: '#E01563', message: "FAILED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})")
}
}
}
def getTerraformPath(){
def tfHome = tool name: 'terraform-14', type: 'terraform'
return tfHome
}