Skip to content

Commit 40a19ae

Browse files
authored
fix: Add missing quotes for terragrunt-atlantis-config string parameters (#5)
1 parent d59d882 commit 40a19ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ locals {
2222
[
2323
"terragrunt-atlantis-config",
2424
"generate",
25-
format("--output %s", repo.terragrunt_atlantis_config.output),
26-
repo.terragrunt_atlantis_config.filter != null ? format("--filter %s", repo.terragrunt_atlantis_config.filter) : null,
25+
format("--output \"%s\"", repo.terragrunt_atlantis_config.output),
26+
repo.terragrunt_atlantis_config.filter != null ? format("--filter \"%s\"", repo.terragrunt_atlantis_config.filter) : null,
2727
repo.terragrunt_atlantis_config.parallel != null ? format("--parallel=%s", repo.terragrunt_atlantis_config.parallel) : null,
2828
repo.terragrunt_atlantis_config.autoplan != null ? format("--autoplan=%s", repo.terragrunt_atlantis_config.autoplan) : null,
2929
repo.terragrunt_atlantis_config.automerge != null ? format("--automerge=%s", repo.terragrunt_atlantis_config.automerge) : null,

0 commit comments

Comments
 (0)