diff --git a/infrastructure/config/main.tf b/infrastructure/config/main.tf index 3266463..2df8266 100644 --- a/infrastructure/config/main.tf +++ b/infrastructure/config/main.tf @@ -55,7 +55,7 @@ locals { } storage_tables = { - test = ["logs", "pilots"] - prod = ["logs", "pilots"] + test = ["projects"] + prod = ["projects"] } } \ No newline at end of file diff --git a/infrastructure/config/outputs.tf b/infrastructure/config/outputs.tf index 29fa8dd..446d7fb 100644 --- a/infrastructure/config/outputs.tf +++ b/infrastructure/config/outputs.tf @@ -30,10 +30,18 @@ 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 "log_analytics_workspace_name" { value = local.log_analytics_workspace_name[var.environment] } output "storage_account_name" { value = local.storage_account_name[var.environment] +} + +output "storage_tables" { + value = local.storage_tables[var.environment] } \ No newline at end of file diff --git a/infrastructure/variables.tf b/infrastructure/variables.tf index 4ecbe04..f2d97b0 100644 --- a/infrastructure/variables.tf +++ b/infrastructure/variables.tf @@ -11,6 +11,10 @@ variable "CLIENT_SECRET" { sensitive = true } +variable "DNS_ZONE_RESOURCE_GROUP" { + type = string +} + variable "DOCKER_IO_PASSWORD" { type = string sensitive = true @@ -24,10 +28,6 @@ variable "DOMAIN_NAME" { type = string } -variable "REGION" { - type = string -} - variable "RESOURCE_GROUP_NAME" { type = string }