Ver código fonte

Added Jenkinsfile

master
devops95ca 4 meses atrás
pai
commit
8a4e420db7
1 arquivos alterados com 17 adições e 2 exclusões
  1. 17
    2
      Jenkinsfile

+ 17
- 2
Jenkinsfile Ver arquivo

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