We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5eebcd commit 8e42218Copy full SHA for 8e42218
.github/workflows/test.yml
@@ -38,12 +38,13 @@ jobs:
38
find . -name "sandbox.tfplan"
39
echo "found!"
40
tfplan_location=$(find . -name "sandbox.tfplan")
41
- echo "TERRAFORM_PLAN=$(cat $tfplan_location)" >> "$GITHUB_OUTPUT"
+ tfplan_contents=$(cat $tfplan_location)
42
+ echo "TERRAFORM_PLAN=$tfplan_contents" >> $GITHUB_OUTPUT
43
with:
44
tf_version: '1.5.5'
45
tg_version: '0.54.11'
46
tg_dir: 'platform/sandbox/us-east-2/000'
- tg_command: 'plan -out sandbox.tfplan'
47
+ tg_command: 'plan -out=sandbox.tfplan -input=false'
48
49
- name: Deploy
50
uses: gruntwork-io/terragrunt-action@v2
0 commit comments