fix example

This commit is contained in:
zjhe 2024-10-04 16:34:51 +08:00 committed by lonegunmanb
parent 52563b7e8d
commit 49dcdf9061
2 changed files with 3 additions and 1 deletions

View File

@ -47,6 +47,8 @@ resource "azurerm_firewall" "azure_firewall_instance" {
name = "afw-${var.name}-${var.environment}" name = "afw-${var.name}-${var.environment}"
location = azurerm_resource_group.default.location location = azurerm_resource_group.default.location
resource_group_name = azurerm_resource_group.hub_rg.name resource_group_name = azurerm_resource_group.hub_rg.name
sku_name = "AZFW_VNet"
sku_tier = "Standard"
firewall_policy_id = azurerm_firewall_policy.base_policy.id firewall_policy_id = azurerm_firewall_policy.base_policy.id
ip_configuration { ip_configuration {

View File

@ -3,7 +3,7 @@ resource "random_string" "ci_prefix" {
length = 8 length = 8
upper = false upper = false
special = false special = false
number = false numeric = false
} }
# Compute instance # Compute instance