Feature/1 add projects and about pages #3
@@ -55,7 +55,7 @@ locals {
|
|||||||
}
|
}
|
||||||
|
|
||||||
storage_tables = {
|
storage_tables = {
|
||||||
test = ["logs", "pilots"]
|
test = ["projects"]
|
||||||
prod = ["logs", "pilots"]
|
prod = ["projects"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -30,6 +30,10 @@ output "container_app_environment_name" {
|
|||||||
value = local.container_app_environment_name[var.environment]
|
value = local.container_app_environment_name[var.environment]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output "custom_domain_count" {
|
||||||
|
value = local.custom_domain_count[var.environment]
|
||||||
|
}
|
||||||
|
|
||||||
output "log_analytics_workspace_name" {
|
output "log_analytics_workspace_name" {
|
||||||
value = local.log_analytics_workspace_name[var.environment]
|
value = local.log_analytics_workspace_name[var.environment]
|
||||||
}
|
}
|
||||||
@@ -37,3 +41,7 @@ output "log_analytics_workspace_name" {
|
|||||||
output "storage_account_name" {
|
output "storage_account_name" {
|
||||||
value = local.storage_account_name[var.environment]
|
value = local.storage_account_name[var.environment]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output "storage_tables" {
|
||||||
|
value = local.storage_tables[var.environment]
|
||||||
|
}
|
||||||
@@ -11,6 +11,10 @@ variable "CLIENT_SECRET" {
|
|||||||
sensitive = true
|
sensitive = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
variable "DNS_ZONE_RESOURCE_GROUP" {
|
||||||
|
type = string
|
||||||
|
}
|
||||||
|
|
||||||
variable "DOCKER_IO_PASSWORD" {
|
variable "DOCKER_IO_PASSWORD" {
|
||||||
type = string
|
type = string
|
||||||
sensitive = true
|
sensitive = true
|
||||||
@@ -24,10 +28,6 @@ variable "DOMAIN_NAME" {
|
|||||||
type = string
|
type = string
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "REGION" {
|
|
||||||
type = string
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "RESOURCE_GROUP_NAME" {
|
variable "RESOURCE_GROUP_NAME" {
|
||||||
type = string
|
type = string
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user