Terraform prod by @alismx #1
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: Terraform Plan | |
run-name: Terraform ${{ inputs.terraform_action }} ${{ inputs.workspace }} by @${{ github.actor }} | |
on: | |
workflow_dispatch: | |
inputs: | |
workspace: | |
description: 'The workspace to terraform against' | |
required: true | |
type: choice | |
options: | |
- "" | |
- prod | |
concurrency: | |
group: ${{ github.event.inputs.workspace }}-terraform | |
cancel-in-progress: false | |
permissions: | |
id-token: write | |
contents: read | |
env: | |
workspace: ${{ github.event.inputs.workspace }} | |
terraform_action: plan | |
jobs: | |
terraform: | |
name: Run Terraform | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
# this may need to be updated if you change the directory you are working with | |
# ./terraform/implementation/dev || ./terraform/implementation/prod for example | |
# this practice is recommended to keep the terraform code organized while reducing the risk of conflicts | |
working-directory: ./terraform/implementation/ecs | |
steps: | |
- name: Check Out Changes | |
uses: actions/checkout@v4 | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v3 | |
- name: configure aws credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | |
role-session-name: githubDeploymentWorkflow | |
aws-region: ${{ vars.AWS_REGION }} | |
- name: Terraform | |
env: | |
ACTION: ${{ env.terraform_action }} | |
BUCKET: ${{ secrets.TFSTATE_BUCKET }} | |
DYNAMODB_TABLE: ${{ secrets.TFSTATE_DYNAMODB_TABLE }} | |
OWNER: ${{ vars.OWNER }} | |
PROJECT: ${{ vars.PROJECT }} | |
REGION: ${{ vars.AWS_REGION }} | |
WORKSPACE: ${{ env.workspace }} | |
shell: bash | |
run: | | |
echo "owner = \"$OWNER\"" >> $WORKSPACE.tfvars | |
echo "project = \"$PROJECT\"" >> $WORKSPACE.tfvars | |
echo "region = \"$REGION\"" >> $WORKSPACE.tfvars | |
terraform init \ | |
-var-file="$WORKSPACE.tfvars" \ | |
-backend-config "bucket=$BUCKET" \ | |
-backend-config "dynamodb_table=$DYNAMODB_TABLE" \ | |
-backend-config "region=$REGION" \ | |
|| (echo "terraform init failed, exiting..." && exit 1) | |
terraform workspace select "$WORKSPACE" | |
terraform plan -var-file="$WORKSPACE.tfvars" |