Explorar el Código

Added Jenkinsfile

master
J_Hayward hace 4 meses
padre
commit
a14527eaa2
Se han modificado 1 ficheros con 16 adiciones y 1 borrados
  1. 16
    1
      Jenkinsfile

+ 16
- 1
Jenkinsfile Ver fichero

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


Cargando…
Cancelar
Guardar