Updating version number to 1.0.0

This commit is contained in:
2025-02-20 18:37:34 -06:00
parent d6bd76cd77
commit 3356dfc77a
7 changed files with 39 additions and 25 deletions

View File

@@ -39,6 +39,11 @@ locals {
prod = "flying-prod"
}
custom_domain_count = {
test = 0
prod = 1
}
logbook_feature_flag_active = {
test = "true"
prod = "true"

View File

@@ -30,6 +30,10 @@ output "container_app_environment_name" {
value = local.container_app_environment_name[var.environment]
}
output "custom_domain_count" {
value = local.custom_domain_count[var.environment]
}
output "logbook_feature_flag_active" {
value = local.logbook_feature_flag_active[var.environment]
}