fix(cd): download artifact condition #9
This file contains 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: TerraformDev | |
on: | |
push: | |
branches: ["develop"] | |
workflow_run: | |
workflows: ["CI"] | |
types: completed | |
env: | |
AWS_REGION: us-east-1 | |
AWS_KEY_ID: ${{ secrets.AWS_KEY_ID }} | |
AWS_SECRET_KEY: ${{ secrets.AWS_SECRET_KEY }} | |
TF_STATE_PATH: terraform/terraform.tfstate | |
TF_WORK_DIR: ./terraform | |
jobs: | |
plan: | |
runs-on: ubuntu-latest | |
environment: develop | |
env: | |
ENV: ${{ vars.ENVIRONMENT }} | |
APP: ${{ vars.APP_NAME }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: hashicorp/setup-terraform@v3 | |
- uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: ${{ env.AWS_REGION }} | |
aws-access-key-id: ${{ env.AWS_KEY_ID }} | |
aws-secret-access-key: ${{ env.AWS_SECRET_KEY }} | |
- name: Terraform Init | |
working-directory: ${{ env.TF_WORK_DIR }} | |
run: terraform init | |
- name: Terraform Plan | |
working-directory: ${{ env.TF_WORK_DIR }} | |
run: terraform plan -var environment=${{ env.ENV }} -var app_name=${{ env.APP }} | |
- name: Terraform Cache | |
uses: actions/cache@v4 | |
with: | |
path: ./terraform/.terraform | |
key: terraform-$({{ hashFiles('**/*.tf') }}) | |
apply: | |
runs-on: ubuntu-latest | |
environment: develop | |
needs: plan | |
env: | |
ENV: ${{ vars.ENVIRONMENT }} | |
APP: ${{ vars.APP_NAME }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: hashicorp/setup-terraform@v3 | |
- uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: ${{ env.AWS_REGION }} | |
aws-access-key-id: ${{ env.AWS_KEY_ID }} | |
aws-secret-access-key: ${{ env.AWS_SECRET_KEY }} | |
- name: Terraform Download Cache | |
uses: actions/cache@v4 | |
with: | |
path: ./terraform/.terraform | |
key: terraform-$({{ hashFiles('**/*.tf') }}) | |
- name: Check artifacts | |
uses: xSAVIKx/artifact-exists-action@v0 | |
id: check-artifact | |
with: | |
name: "terraform-state" | |
- name: Download TF States | |
uses: actions/download-artifact@v4 | |
if: steps.check-artifact.outputs.exists == 'true' | |
with: | |
name: terraform-state | |
path: ./terraform/terraform.tfstate | |
- name: Terraform Apply | |
working-directory: ${{ env.TF_WORK_DIR }} | |
run: terraform apply -auto-approve -var environment=${{ env.ENV }} -var app_name=${{ env.APP }} | |
- name: Upload TF States | |
uses: actions/upload-artifact@v4 | |
with: | |
name: terraform-state | |
path: ./terraform/terraform.tfstate |