Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion infrastructure/modules/container-apps/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ variable "use_apex_domain" {
}

variable "enable_alerting" {
description = "Whether monitoring and alerting is enabled for the PostgreSQL Flexible Server."
description = "Whether monitoring and alerting is enabled."
type = bool
}

Expand Down
2 changes: 1 addition & 1 deletion infrastructure/modules/infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module "app_insights_audit" {

log_analytics_workspace_id = module.log_analytics_workspace_audit.id

enable_alerting = var.enable_alerting
enable_alerting = var.enable_alerting
}

module "private_link_scoped_service_law" {
Expand Down
5 changes: 5 additions & 0 deletions infrastructure/modules/infra/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ variable "cae_zone_redundancy_enabled" {
type = bool
}

variable "enable_alerting" {
description = "Whether monitoring and alerting is enabled."
type = bool
}

locals {
hub_vnet_rg_name = "rg-hub-${var.hub}-uks-hub-networking"
}
1 change: 1 addition & 0 deletions infrastructure/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ module "infra" {
protect_keyvault = var.protect_keyvault
vnet_address_space = var.vnet_address_space
cae_zone_redundancy_enabled = var.cae_zone_redundancy_enabled
enable_alerting = var.enable_alerting
}

module "shared_config" {
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ variable "alert_window_size" {
}

variable "enable_alerting" {
description = "Whether monitoring and alerting is enabled for the PostgreSQL Flexible Server."
description = "Whether monitoring and alerting is enabled."
type = bool
default = false
}
Expand Down
Loading