Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
missed updating one input in called workflows
Browse files Browse the repository at this point in the history
jdbass committed Mar 28, 2024
1 parent 633f152 commit 86fcb86
Showing 3 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/iac_apply.yaml
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ jobs:
tofu_wrapper: false
- name: install terragrunt
run: |
sudo wget -q -O /bin/terragrunt "https://github.com/gruntwork-io/terragrunt/releases/download/v${{ env.tg_version }}/terragrunt_linux_amd64"
sudo wget -q -O /bin/terragrunt "https://github.com/gruntwork-io/terragrunt/releases/download/v${{ inputs.tg_version }}/terragrunt_linux_amd64"
sudo chmod +x /bin/terragrunt
terragrunt -v
- name: init
7 changes: 0 additions & 7 deletions .github/workflows/iac_main.yaml
Original file line number Diff line number Diff line change
@@ -17,13 +17,6 @@ env:
AWS_REGION: us-east-1

jobs:
dummy:
runs-on: ubuntu/latest
steps:
- name: some crap
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: ${{env.AWS_REGION }}
verify:
if: github.ref != 'refs/heads/main'
strategy:
2 changes: 1 addition & 1 deletion .github/workflows/iac_verify.yaml
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ jobs:
tofu_wrapper: false
- name: install terragrunt
run: |
sudo wget -q -O /bin/terragrunt "https://github.com/gruntwork-io/terragrunt/releases/download/v${{ env.tg_version }}/terragrunt_linux_amd64"
sudo wget -q -O /bin/terragrunt "https://github.com/gruntwork-io/terragrunt/releases/download/v${{ inputs.tg_version }}/terragrunt_linux_amd64"
sudo chmod +x /bin/terragrunt
terragrunt -v
- name: init

0 comments on commit 86fcb86

Please sign in to comment.