Skip to content
Snippets Groups Projects

Resolve "Write out Terraform outputs"

Merged Harry Milne requested to merge 6-write-out-terraform-outputs into master
1 file
+ 6
2
Compare changes
  • Side-by-side
  • Inline
+ 6
2
@@ -162,7 +162,11 @@ if [ -z "$DEPLOY_NO_UPDATE" ]; then
fi
if [ -z "$DEPLOY_PLAN_ONLY" ]; then
exec /usr/bin/terragrunt apply -lock-timeout=15m --terragrunt-download-dir /home/gitlab-runner/.terragrunt-cache -auto-approve
/usr/bin/terragrunt apply -lock-timeout=15m --terragrunt-download-dir /home/gitlab-runner/.terragrunt-cache -auto-approve
else
exec /usr/bin/terragrunt plan -lock-timeout=15m --terragrunt-download-dir /home/gitlab-runner/.terragrunt-cache
/usr/bin/terragrunt plan -lock-timeout=15m --terragrunt-download-dir /home/gitlab-runner/.terragrunt-cache
fi
if [ "$DEPLOY_JSON_OUTPUT" ]; then
/usr/bin/terragrunt output -json -no-color > output.json
fi
Loading