Skip to content

Commit

Permalink
Fix hostname for production (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
russdaygh authored Apr 26, 2024
1 parent 6ccdaf0 commit f944a8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/locals.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
locals {
resource_prefix = "pocketddd-${var.env}"
sql_server_name = "${local.resource_prefix}-sql-server"
subdomain = var.env == "prod" ? "pocket" : "pocket-${var.env}"
subdomain = var.env == "production" ? "pocket" : "pocket-${var.env}"
}

0 comments on commit f944a8b

Please sign in to comment.