Build Infra #118
Workflow file for this run
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: Build Infra | |
on: | |
# When a PR is created targeting master branch | |
pull_request: | |
branches: | |
- master | |
paths: | |
- "infrastructure/**" | |
# Manual trigger via GH Actions UI | |
workflow_dispatch: | |
inputs: | |
environment: | |
description: "Select target environment" | |
required: true | |
default: "dev" | |
type: choice | |
options: | |
- dev | |
- test | |
- prod | |
env: | |
WORKING_DIRECTORY: "./infrastructure/cloud/environments/${{ inputs.environment || 'dev' }}" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: | |
name: ${{ inputs.environment || 'dev' }} | |
env: | |
TF_VAR_app_name: ${{ vars.APP_NAME }} | |
TF_VAR_environment: ${{ vars.ENVIRONMENT_NAME }} | |
TF_VAR_kms_key_name: ${{ vars.KMS_KEY_NAME }} | |
TF_VAR_vpc_id: ${{ vars.VPC_ID }} | |
TF_VAR_lambda_memory_size: ${{ vars.LAMBDA_MEMORY_SIZE }} | |
permissions: | |
id-token: write | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Determine environment | |
id: determine-environment | |
run: | | |
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then | |
echo "environment=${{ github.event.inputs.environment }}" >> $GITHUB_ENV | |
else | |
echo "environment=dev" >> $GITHUB_ENV | |
fi | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: tfsec | |
uses: aquasecurity/[email protected] | |
with: | |
sarif_file: tfsec.sarif | |
working_directory: ${{ env.WORKING_DIRECTORY }} | |
tfsec_args: "--tfvars-file=${{ env.WORKING_DIRECTORY }}/${{ env.environment }}.tfvars" | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: tfsec.sarif | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-skip-session-tagging: true | |
aws-region: ${{ vars.AWS_REGION }} | |
role-to-assume: ${{ vars.AWS_ROLE_ARN }} | |
role-duration-seconds: 1800 | |
role-session-name: ci-deployment | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: 1.10.2 | |
- name: Terraform Init | |
id: init | |
run: | | |
terraform init -input=false -backend-config=backend.tfvars -var-file=${{ env.environment }}.tfvars | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
- name: Terraform Plan (Initial Stack) | |
id: plan-initial | |
run: | | |
terraform plan -target=module.initial -no-color -input=false -var-file=${{ env.environment }}.tfvars | |
continue-on-error: true | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
- name: Terraform Plan (Initial) Status | |
if: steps.plan-initial.outcome == 'failure' | |
run: exit 1 | |
- name: Terraform Plan (Main Stack) | |
id: plan-main | |
run: | | |
terraform plan -no-color -input=false -var-file=${{ env.environment }}.tfvars | |
continue-on-error: true | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
- name: Terraform Plan (Main) Status | |
if: steps.plan-main.outcome == 'failure' | |
run: exit 1 |