Skip to content

Adding Cognito module to Terraform #57

Adding Cognito module to Terraform

Adding Cognito module to Terraform #57

name: PR Terraform Plan
on: [pull_request]
permissions:
contents: read
pull-requests: write
jobs:
changed-files:
name: Get changed terraform directories
runs-on: ubuntu-latest
outputs:
module-change: ${{ steps.module-change.outputs.module_change }}
project-directory: ${{ steps.project-directory.outputs.directory }}
environment-directory: ${{ steps.environment-directory.outputs.directory }}
has-project-change: ${{ steps.project-directory.outputs.has_project_change }}
has-environment-change: ${{ steps.environment-directory.outputs.has_environment_change }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: dorny/paths-filter@v2
with:
filters: |
module-change:
- 'terraform-modules/**'
project-change:
- 'terraform-incubator/**/project/*.tf'
environment-change:
- 'terraform-incubator/**/!(project)/*.tf'
list-files: json
- name: List all changed files
run: |
echo 'module-change: ${{ steps.changed-files.outputs.module-change_files }}'
echo 'project-change: ${{ steps.changed-files.outputs.project-change_files }}'
echo 'environment-change: ${{ steps.changed-files.outputs.environment-change_files }}'
- name: Set module change output
id: module-change
if: ${{ fromJson(steps.changed-files.outputs.module-change_files).length > 0 }}
run: echo "::set-output name=module_change::true"
- name: Extract project directory
id: project-directory
if: ${{ fromJson(steps.changed-files.outputs.project-change_files).length > 0 }}
run: |
directory=$(dirname "${{ fromJson(steps.changed-files.outputs.project-change_files)[0] }}")
echo "Extracted Directory: $directory"
echo "::set-output name=directory::$directory"
echo "::set-output name=has_project_change::true"
- name: Extract environment directory
id: environment-directory
if: ${{ fromJson(steps.changed-files.outputs.environment-change_files).length > 0 }}
run: |
directory=$(dirname "${{ fromJson(steps.changed-files.outputs.environment-change_files)[0] }}")
echo "Extracted Directory: $directory"
echo "::set-output name=directory::$directory"
echo "::set-output name=has_environment_change::true"
plan-environment:
runs-on: ubuntu-latest
name: Terraform plan - Environment changes
needs: [changed-files]
if: ${{ needs.changed-files.outputs.has_environment_change == 'true' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AWS_ACCESS_KEY_ID: ${{ secrets.INCUBATOR_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.INCUBATOR_AWS_SECRET_ACCESS_KEY }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: terraform plan
uses: dflook/terraform-plan@v1
with:
path: ${{ needs.changed-files.outputs.environment-directory }}
plan-project:
runs-on: ubuntu-latest
name: Terraform plan - Project changes
needs: [changed-files]
if: ${{ needs.changed-files.outputs.has_project_change == 'true' && needs.changed-files.outputs.has_environment_change != 'true' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AWS_ACCESS_KEY_ID: ${{ secrets.INCUBATOR_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.INCUBATOR_AWS_SECRET_ACCESS_KEY }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: terraform plan
uses: dflook/terraform-plan@v1
with:
path: ${{ needs.changed-files.outputs.project-directory }}
skip-module:
runs-on: ubuntu-latest
name: Skip Terraform plan for module changes only
needs: [changed-files]
if: ${{ needs.changed-files.outputs.module_change == 'true' && needs.changed-files.outputs.has_project_change != 'true' && needs.changed-files.outputs.has_environment_change != 'true' }}
steps:
- name: Skip module changes
run: echo "Skipping Terraform plan for module changes only."