Ver código fonte

Added Jenkinsfile

master
J_Hayward 4 meses atrás
pai
commit
a14527eaa2
1 arquivos alterados com 16 adições e 1 exclusões
  1. 16
    1
      Jenkinsfile

+ 16
- 1
Jenkinsfile Ver arquivo

@@ -3,7 +3,22 @@ pipeline {
stages {
stage('Test') {
steps {
echo 'Test success'
sh '''export PATH=$PATH:/var/jenkins_home
terraform init'''
}
}

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'''
}
}


Carregando…
Cancelar
Salvar