Skip to content

Commit

Permalink
Add missing terraform var for data protection module (#1237)
Browse files Browse the repository at this point in the history
  • Loading branch information
DrizzlyOwl authored Dec 9, 2024
1 parent f048b3f commit 738822f
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions terraform/data-protection.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
module "data_protection" {
source = "github.com/DFE-Digital/terraform-azurerm-aspnet-data-protection?ref=v1.1.0"

data_protection_key_vault_assign_role = false
data_protection_key_vault_subnet_prefix = "172.16.100.0/28"
data_protection_key_vault_access_ipv4 = local.key_vault_access_ipv4
data_protection_resource_prefix = "${local.environment}${local.project_name}"
data_protection_azure_location = local.azure_location
data_protection_tags = local.tags
data_protection_resource_group_name = module.azure_container_apps_hosting.azurerm_resource_group_default.name
data_protection_key_vault_assign_role = false
data_protection_key_vault_subnet_prefix = "172.16.100.0/28"
data_protection_key_vault_access_ipv4 = local.key_vault_access_ipv4
data_protection_resource_prefix = "${local.environment}${local.project_name}"
data_protection_azure_location = local.azure_location
data_protection_tags = local.tags
data_protection_resource_group_name = module.azure_container_apps_hosting.azurerm_resource_group_default.name
data_protection_diagnostic_log_analytics_workspace_id = module.azure_container_apps_hosting.azurerm_log_analytics_workspace_container_app.id
}

0 comments on commit 738822f

Please sign in to comment.