Skip to content

Commit

Permalink
Needed to use double quotes (#522)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryan-robitaille authored Oct 31, 2023
1 parent 60779fe commit 4ff5b4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion env/cloud/alarms/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
}

locals {
domain = jsondecode(get_env("APP_DOMAINS", "['localhost:3000']"))
domain = jsondecode(get_env("APP_DOMAINS", "[\"localhost:3000\"]"))
}

dependency "hosted_zone" {
Expand Down
2 changes: 1 addition & 1 deletion env/cloud/load_balancer/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
}

locals {
domain = jsondecode(get_env("APP_DOMAINS", "['localhost:3000']"))
domain = jsondecode(get_env("APP_DOMAINS", "[\"localhost:3000\"]"))
}


Expand Down
2 changes: 1 addition & 1 deletion env/terragrunt.hcl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
locals {
account_id = get_env("AWS_ACCOUNT_ID", "")
env = get_env("APP_ENV", "local")
domains = get_env("APP_DOMAINS", "['localhost:3000']")
domains = get_env("APP_DOMAINS", "[\"localhost:3000\"]")
}

inputs = {
Expand Down

0 comments on commit 4ff5b4d

Please sign in to comment.