Skip to content

Commit d2d9f2f

Browse files
fix: copy-paste error in qa env (#150)
1 parent 4ac8092 commit d2d9f2f

3 files changed

Lines changed: 12 additions & 10 deletions

File tree

envs/qa/backend/terragrunt.hcl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ include "stack" {
66
}
77

88
locals {
9-
mailgun_domain = "notifycal.com"
9+
mailgun_domain = "nonprod.notifycal.com"
1010
}
1111

1212
inputs = {
1313
observability = {
1414
alert_notifier = {
15-
slack_channel = "#prod-alerting"
15+
slack_channel = "#qa-alerting"
1616
}
1717
alert_config = {
1818
treat_missing_data = "ignore"
@@ -29,9 +29,9 @@ inputs = {
2929
emailing_config = {
3030
enabled = true
3131
sender = {
32-
displayName = "Notifycal"
32+
displayName = "Notifycal QA"
3333
email = "info@${local.mailgun_domain}"
3434
}
3535
}
3636
deletion_protection_enabled = true
37-
}
37+
}

envs/qa/frontend/terragrunt.hcl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ include "stack" {
66
}
77

88
inputs = {
9-
force_destroy_bucket = false
10-
enable_www_redirect = false
9+
force_destroy_bucket = true
10+
# doesn't work for non-prod
11+
enable_www_redirect = false
1112
cloudflare_config = {
12-
private_site_auth = null
13+
private_site_auth = {}
1314
precedence = 1
1415
}
1516
}

envs/qa/static_landing/terragrunt.hcl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ include "stack" {
66
}
77

88
inputs = {
9-
force_destroy_bucket = false
10-
enable_www_redirect = false
9+
force_destroy_bucket = true
10+
# doesn't work for non-prod
11+
enable_www_redirect = false
1112
cloudflare_config = {
12-
private_site_auth = null
13+
private_site_auth = {}
1314
precedence = 2
1415
}
1516
}

0 commit comments

Comments
 (0)