Ver código fonte

Added Jenkinsfile

master
devopscd7c 8 meses atrás
pai
commit
3baf367c09
1 arquivos alterados com 17 adições e 1 exclusões
  1. 17
    1
      Jenkinsfile

+ 17
- 1
Jenkinsfile Ver arquivo

@@ -1,9 +1,25 @@
pipeline {
agent any
stages {
stage('Test') {
stage('Init') {
steps {
echo 'Test stage'
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