소스 검색

Added Jenkinsfile

master
devops95ca 4 달 전
부모
커밋
8a4e420db7
1개의 변경된 파일17개의 추가작업 그리고 2개의 파일을 삭제
  1. 17
    2
      Jenkinsfile

+ 17
- 2
Jenkinsfile 파일 보기

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


Loading…
취소
저장