Skip to content

Commit 0dab0fe

Browse files
committed
change defaults to not qa env
1 parent e4aa02a commit 0dab0fe

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

infrastructure/environments/production/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ module "frontend" {
231231

232232
# Custom domain configuration
233233
domain_name = var.use_custom_domain ? var.frontend_domain : ""
234-
domain_prefix = "" # Empty since we're using the full domain (qa.finishlinebyner.com)
234+
domain_prefix = "" # Empty since we're using the full domain (finishlinebyner.com)
235235

236236
# Additional environment variables for frontend build
237237
additional_environment_variables = {

infrastructure/environments/production/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,13 +127,13 @@ variable "hosted_zone_name" {
127127
variable "frontend_domain" {
128128
description = "Custom domain for frontend"
129129
type = string
130-
default = "qa.finishlinebyner.com"
130+
default = "finishlinebyner.com"
131131
}
132132

133133
variable "backend_domain" {
134134
description = "Custom domain for backend"
135135
type = string
136-
default = "api-qa.finishlinebyner.com"
136+
default = "api-finishlinebyner.com"
137137
}
138138

139139
# Legacy variable - kept for backwards compatibility

infrastructure/modules/dns/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ variable "hosted_zone_name" {
1616
}
1717

1818
variable "frontend_domain" {
19-
description = "Frontend domain name (e.g., qa.finishlinebyner.com)"
19+
description = "Frontend domain name (e.g., finishlinebyner.com)"
2020
type = string
2121
}
2222

2323
variable "backend_domain" {
24-
description = "Backend domain name (e.g., api-qa.finishlinebyner.com)"
24+
description = "Backend domain name (e.g., api-finishlinebyner.com)"
2525
type = string
2626
}
2727

0 commit comments

Comments
 (0)