fix push #22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "Terraform CICD" | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
# paths: | |
# - terraform/** | |
pull_request: | |
# branches: | |
# - main | |
# - develop | |
# paths: | |
# - terraform/** | |
env: | |
# verbosity setting for Terraform logs | |
TF_LOG: INFO | |
# # Credentials for deployment to AWS | |
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
# # S3 bucket for the Terraform state | |
# BUCKET_TF_STATE: ${{ secrets.BUCKET_TF_STATE}} | |
jobs: | |
terraform: | |
name: "Terraform Infrastructure Change Management" | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write # Required for creating or updating PRs | |
contents: write # Required for modifying files (if applicable) | |
defaults: | |
run: | |
shell: bash | |
# We keep Terraform files in the terraform directory. | |
# working-directory: ./terraform | |
steps: | |
- name: Checkout the repository to the runner | |
uses: actions/checkout@v2 | |
- id: 'auth' | |
name: 'Authenticate to Google Cloud' | |
uses: 'google-github-actions/auth@v2' | |
with: | |
credentials_json: '${{ secrets.GCP_CREDENTIALS }}' | |
- name: 'Set up Cloud SDK' | |
uses: 'google-github-actions/setup-gcloud@v2' | |
- name: Setup Terraform with specified version on the runner | |
uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_version: 1.3.0 | |
- name: Terraform init [pull_request] | |
id: init-pr | |
if: github.event_name == 'pull_request' | |
run: | | |
if [ "${{ github.event.pull_request.base.ref }}" == "develop" ]; then | |
export ENV="dev"; | |
elif [ "${{ github.event.pull_request.base.ref }}" == "main" ]; then | |
export ENV="prod"; | |
else | |
echo "unsupported environment"; | |
fi | |
terraform init -upgrade -backend-config=backend/$ENV.tfvars --reconfigure | |
- name: Terraform init [push] | |
id: init-push | |
if: github.event_name == 'push' | |
run: | | |
if [ "${{ github.ref }}" == "develop" ]; then | |
export ENV="dev"; | |
elif [ "${{ github.ref }}" == "main" ]; then | |
export ENV="prod"; | |
else | |
echo "unsupported environment"; | |
fi | |
terraform init -upgrade -backend-config=backend/$ENV.tfvars --reconfigure | |
- name: Terraform format | |
id: fmt | |
run: terraform fmt -check | |
- name: Terraform validate | |
id: validate | |
run: terraform validate | |
- name: Terraform plan [pull_request] | |
id: plan-pr | |
if: github.event_name == 'pull_request' | |
run: | | |
if [ "${{ github.event.pull_request.base.ref }}" == "develop" ]; then | |
export ENV="dev"; | |
elif [ "${{ github.event.pull_request.base.ref }}" == "main" ]; then | |
export ENV="prod"; | |
else | |
echo "unsupported environment"; | |
fi | |
terraform plan -input=false -var-file=variables/$ENV.auto.tfvars -lock=false | |
continue-on-error: true | |
- name: Terraform plan [push] | |
id: plan-push | |
if: github.event_name == 'push' | |
run: | | |
if [ "${{ github.ref }}" == "refs/heads/develop" ]; then | |
export ENV="dev"; | |
elif [ "${{ github.ref }}" == "refs/heads/main" ]; then | |
export ENV="prod"; | |
else | |
echo "unsupported environment"; | |
fi | |
terraform plan -input=false -var-file=variables/$ENV.auto.tfvars -lock=false | |
continue-on-error: true | |
- uses: actions/github-script@v6 | |
if: github.event_name == 'pull_request' | |
env: | |
PLAN: "terraform\n${{ steps.plan-pr.outputs.stdout }}" | |
with: | |
script: | | |
const output = `#### Terraform Format and Style 🖌\`${{ steps.fmt.outcome }}\` | |
#### Terraform Initialization ⚙️\`${{ steps.init-pr.outcome }}\` | |
#### Terraform Validation 🤖\`${{ steps.validate.outcome }}\` | |
#### Terraform Plan 📖\`${{ steps.plan-pr.outcome }}\` | |
<details><summary>Show Plan</summary> | |
\`\`\`\n | |
${process.env.PLAN} | |
\`\`\` | |
</details> | |
*Pushed by: @${{ github.actor }}, Action: \`${{ github.event_name }}\`*`; | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: output | |
}) | |
- name: Terraform Plan Status [pull_request] | |
if: github.event_name == 'pull_request' && steps.plan-pr.outcome == 'failure' | |
run: exit 1 | |
- name: Terraform Plan Status | |
if: github.event_name == 'push' && steps.plan-push.outcome == 'failure' | |
run: exit 1 | |
- name: Terraform Apply | |
if: github.ref == 'refs/heads/main' && github.event_name == 'push' | |
run: terraform apply -auto-approve -input=false |