Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated Jenkins file #5

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ pipeline {
environment {
AWS_ACCESS_KEY_ID = credentials('aws-access-key-id')
AWS_SECRET_ACCESS_KEY = credentials('aws-secret-access-key')
AWS_DEFAULT_REGION = 'ap-south-1'
AWS_DEFAULT_REGION = 'us-east-2'
}

stages {
stage('Checkout') {
steps {
git branch: 'main', url: 'https://github.com/CodeSagarOfficial/jenkins-scripts.git'
git branch: 'main', url: 'https://github.com/shadnagar/terraform-jenkins-pipeline.git'
}
}
stage('Terraform init') {
Expand Down Expand Up @@ -50,4 +50,4 @@ pipeline {
}

}
}
}