Skip to content

Commit b063d13

Browse files
committed
VED-343: Change non-prod account ID to the pre-prod account for pre-release testing.
1 parent ebaa36e commit b063d13

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

infra/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ variable "aws_region" {
2020
locals {
2121
account = terraform.workspace # non-prod or prod
2222
dspp_core_account_id = local.account == "prod" ? 232116723729 : 603871901111
23-
immunisation_account_id = local.account == "prod" ? 664418956997 : 345594581768
23+
immunisation_account_id = local.account == "prod" ? 664418956997 : 084828561157
2424
# TODO - add new accounts for CDP migration
2525
}
2626

terraform/configs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ locals {
22
// Flag so we can force delete s3 buckets with items in for pr and shortcode environments only.
33
is_temp = length(regexall("[a-z]{2,4}-?[0-9]+", local.env)) > 0
44
dspp_core_account_id = local.environment == "prod" ? 232116723729 : 603871901111
5-
immunisation_account_id = local.environment == "prod" ? 664418956997 : 345594581768
5+
immunisation_account_id = local.environment == "prod" ? 664418956997 : 084828561157
66
}

0 commit comments

Comments
 (0)