Explorar el Código

Added Jenkinsfile

master
devopscd7c hace 8 meses
padre
commit
3baf367c09
Se han modificado 1 ficheros con 17 adiciones y 1 borrados
  1. 17
    1
      Jenkinsfile

+ 17
- 1
Jenkinsfile Ver fichero

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


Cargando…
Cancelar
Guardar