We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afba853 commit 9c0976bCopy full SHA for 9c0976b
1 file changed
.github/workflows/deploy.yml
@@ -27,11 +27,14 @@ jobs:
27
- name: Update Terraform State and Providers
28
uses: gruntwork-io/terragrunt-action@v3
29
with:
30
- tg_dir: "${TG_WORKING_DIR}"
+ tg_dir: $TG_WORKING_DIR
31
tg_command: init --upgrade
32
33
- name: Terragrunt Plan
34
- run: terragrunt plan --chdir $TG_WORKING_DIR
+ uses: gruntwork-io/terragrunt-action@v3
35
+ with:
36
37
+ tg_command: plan
38
39
- name: Terragrunt Apply
40
run: terragrunt apply -auto-approve --chdir $TG_WORKING_DIR
0 commit comments