You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Jenkinsfile 275B

123456789101112131415161718192021
  1. pipeline {
  2. agent any
  3. stages {
  4. stage('INIT') {
  5. steps {
  6. sh '''export PATH=$PATH:/var/jenkins_home
  7. terraform init'''
  8. }
  9. }
  10. stage('Plan') {
  11. steps {
  12. sh '''export PATH=$PATH:/var/jenkins_home
  13. terraform plan'''
  14. }
  15. }
  16. }
  17. }