Skip to content

Commit f944a8b

Browse files
authored
Fix hostname for production (#12)
1 parent 6ccdaf0 commit f944a8b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

terraform/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
locals {
22
resource_prefix = "pocketddd-${var.env}"
33
sql_server_name = "${local.resource_prefix}-sql-server"
4-
subdomain = var.env == "prod" ? "pocket" : "pocket-${var.env}"
4+
subdomain = var.env == "production" ? "pocket" : "pocket-${var.env}"
55
}

0 commit comments

Comments
 (0)