We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbcd603 commit 27ea414Copy full SHA for 27ea414
terraform/infrastructure/locals.tf
@@ -22,7 +22,7 @@ locals {
22
dynamodb_timeout_seconds = "3"
23
24
is_sandbox_env = length(regexall("-sandbox-", local.stack_name)) > 0
25
- is_dev_env = var.account_name == "dev"
+ is_dev_env = var.account_name == "dev" || var.account_name == "int"
26
27
environment = local.is_sandbox_env ? "${var.account_name}-sandbox" : var.account_name
28
shared_prefix = "${local.project}--${local.environment}"
0 commit comments