This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
devops0776
/
devops0776-cicd-lab
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Added Jenkinsfile
master
devops0776
10 months ago
parent
8977c3b792
commit
2e8be45150
1 changed files
with
14 additions
and
0 deletions
Unified View
Show Diff Stats
14
0
Jenkinsfile
+ 14
- 0
Jenkinsfile
View File
}
}
}
}
stage('Plan') {
steps {
sh '''export PATH=$PATH:/var/jenkins_home
terraform plan'''
}
}
stage('Apply') {
steps {
sh '''export PATH=$PATH:/var/jenkins_home
terraform apply -auto-approve'''
}
}
}
}
}
}
Write
Preview
Loading…
Cancel
Save