Explorar el Código

Added Jenkinsfile

master
devops95ca hace 4 meses
padre
commit
8a4e420db7
Se han modificado 1 ficheros con 17 adiciones y 2 borrados
  1. 17
    2
      Jenkinsfile

+ 17
- 2
Jenkinsfile Ver fichero

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


Cargando…
Cancelar
Guardar