Skip to content

Commit

Permalink
fix: job key format (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelFoleyFZ authored Oct 10, 2024
1 parent 6a2d95d commit eee6c2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Add the following to your `pipeline.yml`:
steps:
- command: ~
plugins:
- fatzebra/terragrunt-workspace#v1.4.6:
- fatzebra/terragrunt-workspace#v1.4.7:
module_dir: "test/test/"
```
Expand Down Expand Up @@ -52,7 +52,7 @@ After adding the docker plugin you also need to run the module discovery as a co
steps:
- command: buildkite-agent meta-data set terragrunt-workspace-module-groups "$(terragrunt output-module-groups --terragrunt-working-dir /test/test)"
plugins:
- fatzebra/terragrunt-workspace#v1.4.6:
- fatzebra/terragrunt-workspace#v1.4.7:
module_dir: "test/test/"
- docker#v5.11.0:
image: "devopsinfra/docker-terragrunt:aws-tf-1.9.7-tg-0.67.16"
Expand Down
4 changes: 2 additions & 2 deletions hooks/post-command
Original file line number Diff line number Diff line change
Expand Up @@ -232,11 +232,11 @@ ${step_args[@]}
prompt: Apply changes?
- label: \":terragrunt: [${BUILDKITE_LABEL}] Apply Modules\"
key: \"apply-${JOB_ID}\"
key: \"apply:${JOB_ID}\"
command: |-
${refresh_commands[@]}
mkdir -p .plans
buildkite-agent artifact download '.plans/**' .plans --step 'plan-${JOB_ID}'
buildkite-agent artifact download '.plans/**' .plans --step 'plan:${JOB_ID}'
for module in \$\$(buildkite-agent meta-data get modules); do
echo \"+++ applying \$\${module}\"
${plan_decryption_command}
Expand Down

0 comments on commit eee6c2f

Please sign in to comment.