-
Notifications
You must be signed in to change notification settings - Fork 0
executable file
·60 lines (53 loc) · 1.87 KB
/
terragrunt-apply.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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/aqua-installer@v2.3.0
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: 'gh-actions@lgtmgen-project.iam.gserviceaccount.com'
- 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