You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+42-22Lines changed: 42 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ module "hubnetworks" {
28
28
firewall = {
29
29
subnet_address_prefix = "192.168.1.0/24"
30
30
sku_tier = "Premium"
31
-
sku_name = "AZFW_Hub"
31
+
sku_name = "AZFW_VNet"
32
32
}
33
33
}
34
34
}
@@ -127,31 +127,39 @@ Description: A map of the hub virtual networks to create. The map key is an arbi
127
127
-`sku_name` - The name of the SKU to use for the Azure Firewall. Possible values include `AZFW_Hub`, `AZFW_VNet`.
128
128
-`sku_tier` - The tier of the SKU to use for the Azure Firewall. Possible values include `Basic`, `Standard`, `Premium`.
129
129
-`subnet_address_prefix` - The IPv4 address prefix to use for the Azure Firewall subnet in CIDR format. Needs to be a part of the virtual network's address space.
130
-
-`subnet_route_table_id` = (Optional) The resource id of the Route Table which should be associated with the Azure Firewall subnet. If not specified the module will assign the generated route table.
131
-
-`name` - (Optional) The name of the firewall resource. If not specified will use `afw-{vnetname}`.
132
130
-`dns_servers` - (Optional) A list of DNS server IP addresses for the Azure Firewall.
133
131
-`firewall_policy_id` - (Optional) The resource id of the Azure Firewall Policy to associate with the Azure Firewall.
132
+
-`management_subnet_address_prefix` - (Optional) The IPv4 address prefix to use for the Azure Firewall management subnet in CIDR format. Needs to be a part of the virtual network's address space.
133
+
-`name` - (Optional) The name of the firewall resource. If not specified will use `afw-{vnetname}`.
134
134
-`private_ip_ranges` - (Optional) A list of private IP ranges to use for the Azure Firewall, to which the firewall will not NAT traffic. If not specified will use RFC1918.
135
+
-`subnet_route_table_id` = (Optional) The resource id of the Route Table which should be associated with the Azure Firewall subnet. If not specified the module will assign the generated route table.
136
+
-`tags` - (Optional) A map of tags to apply to the Azure Firewall. If not specified
135
137
-`threat_intel_mode` - (Optional) The threat intelligence mode for the Azure Firewall. Possible values include `Alert`, `Deny`, `Off`.
136
138
-`zones` - (Optional) A list of availability zones to use for the Azure Firewall. If not specified will be `null`.
137
-
-`tags` - (Optional) A map of tags to apply to the Azure Firewall. If not specified
138
139
-`default_ip_configuration` - (Optional) An object with the following fields. If not specified the defaults below will be used:
139
140
-`name` - (Optional) The name of the default IP configuration. If not specified will use `default`.
140
141
-`public_ip_config` - (Optional) An object with the following fields:
141
142
-`name` - (Optional) The name of the public IP configuration. If not specified will use `pip-afw-{vnetname}`.
142
143
-`zones` - (Optional) A list of availability zones to use for the public IP configuration. If not specified will be `null`.
143
144
-`ip_version` - (Optional) The IP version to use for the public IP configuration. Possible values include `IPv4`, `IPv6`. If not specified will be `IPv4`.
144
145
-`sku_tier` - (Optional) The SKU tier to use for the public IP configuration. Possible values include `Regional`, `Global`. If not specified will be `Regional`.
146
+
-`management_ip_configuration` - (Optional) An object with the following fields. If not specified the defaults below will be used:
147
+
-`name` - (Optional) The name of the management IP configuration. If not specified will use `defaultMgmt`.
148
+
-`public_ip_config` - (Optional) An object with the following fields:
149
+
-`name` - (Optional) The name of the public IP configuration. If not specified will use `pip-afw-mgmt-<Map Key>`.
150
+
-`zones` - (Optional) A list of availability zones to use for the public IP configuration. If not specified will be `null`.
151
+
-`ip_version` - (Optional) The IP version to use for the public IP configuration. Possible values include `IPv4`, `IPv6`. If not specified will be `IPv4`.
152
+
-`sku_tier` - (Optional) The SKU tier to use for the public IP configuration. Possible values include `Regional`, `Global`. If not specified will be `Regional`.
0 commit comments