Skip to content

Merge pull request #11 from a-company-jp/cloudrun-public-access #10

Merge pull request #11 from a-company-jp/cloudrun-public-access

Merge pull request #11 from a-company-jp/cloudrun-public-access #10

name: "Run Terragrunt Apply on main branch push"
on:
push:
branches:
- main
jobs:
run-terraform-apply:
runs-on: ubuntu-latest
permissions:
pull-requests: 'write'
contents: 'read'
id-token: 'write'
steps:
- name: setup repository
uses: actions/checkout@v4
- name: Setup aqua
uses: aquaproj/[email protected]
with:
aqua_version: v2.24.1
- name: Login to Google Cloud
id: auth
uses: google-github-actions/auth@v2
with:
token_format: access_token
workload_identity_provider: 'projects/228944830644/locations/global/workloadIdentityPools/gh-pool/providers/provider-github'
service_account: '[email protected]'
- name: Terragrunt Init
run: terragrunt run-all init
- name: TFlint
working-directory: envs/dev
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
tflint --config $GITHUB_WORKSPACE/.tflint.hcl --init
tflint --config $GITHUB_WORKSPACE/.tflint.hcl --format=checkstyle | \
reviewdog -f=checkstyle \
-name="tflint" \
-reporter=github-pr-review \
-filter-mode=nofilter \
-fail-on-error
- name: Check terragrunt fmt
working-directory: envs/dev
run: terragrunt fmt -check
- name: Terragrunt validate
working-directory: envs/dev
run: terragrunt validate
- name: Terragrunt plan
working-directory: envs/dev
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
chmod 755 $GITHUB_WORKSPACE/.github/scripts/tfwrapper.sh
terragrunt run-all apply --terragrunt-non-interactive --terragrunt-tfpath $GITHUB_WORKSPACE/.github/scripts/tfwrapper.sh