This module is designed to simplify the creation of multi-region hub networks in Azure. It will create a number of virtual networks and subnets, and optionally peer them together in a mesh topology with routing.
- This module will deploy
n
number of virtual networks and subnets. Optionally, these virtual networks can be peered in a mesh topology. - A routing address space can be specified for each hub network, this module will then create route tables for the other hub networks and associate them with the subnets.
- Azure Firewall can be deployed in each hub network. This module will configure routing for the AzureFirewallSubnet.
resource "azurerm_resource_group" "rg" {
location = var.location
name = "rg-hub-${var.suffix}"
}
module "hub" {
source = "../.."
hub_virtual_networks = {
hub = {
name = "hub-${var.suffix}"
address_space = ["10.0.0.0/16"]
location = var.location
resource_group_name = azurerm_resource_group.rg.name
resource_group_creation_enabled = false
firewall = {
sku_name = "AZFW_VNet"
sku_tier = "Standard"
subnet_address_prefix = "10.0.1.0/24"
}
subnets = {
server-subnet = {
name = "server-subnet"
address_prefixes = ["10.0.101.0/24"]
}
}
}
}
}
The following requirements are needed by this module:
The following resources are used by this module:
- azurerm_management_lock.rg_lock (resource)
- azurerm_resource_group.rg (resource)
- azurerm_route.default_route (resource)
- azurerm_route.mesh_routes (resource)
- azurerm_route.user_routes (resource)
- modtm_telemetry.telemetry (resource)
- random_uuid.telemetry (resource)
- azurerm_client_config.telemetry (data source)
- modtm_module_source.telemetry (data source)
No required inputs.
The following input variables are optional (have default values):
Description: This variable controls whether or not telemetry is enabled for the module.
For more information see https://aka.ms/avm/telemetryinfo.
If it is set to false, then no telemetry will be collected.
Type: bool
Default: true
Description: A map of the hub virtual networks to create. The map key is an arbitrary value to avoid Terraform's restriction that map keys must be known at plan time.
name
- The name of the Virtual Network.address_space
- A list of IPv4 address spaces that are used by this virtual network in CIDR format, e.g.["192.168.0.0/24"]
.location
- The Azure location where the virtual network should be created.resource_group_name
- The name of the resource group in which the virtual network should be created.
bgp_community
- The BGP community associated with the virtual network.ddos_protection_plan_id
- The ID of the DDoS protection plan associated with the virtual network.dns_servers
- A list of DNS servers IP addresses for the virtual network.flow_timeout_in_minutes
- The flow timeout in minutes for the virtual network. Default4
.mesh_peering_enabled
- Should the virtual network be peered to other hub networks with this flag enabled? Defaulttrue
.resource_group_creation_enabled
- Should the resource group for this virtual network be created by this module? Defaulttrue
.resource_group_lock_enabled
- Should the resource group for this virtual network be locked? Defaulttrue
.resource_group_lock_name
- The name of the resource group lock.resource_group_tags
- A map of tags to apply to the resource group.routing_address_space
- A list of IPv4 address spaces in CIDR format that are used for routing to this hub, e.g.["192.168.0.0","172.16.0.0/12"]
.hub_router_ip_address
- If not using Azure Firewall, this is the IP address of the hub router. This is used to create route table entries for other hub networks.tags
- A map of tags to apply to the virtual network.
route_table_entries
- (Optional) A set of additional route table entries to add to the route table for this hub network. Default empty[]
. The value is an object with the following fields:name
- The name of the route table entry.address_prefix
- The address prefix to match for this route table entry.next_hop_type
- The type of the next hop. Possible values includeInternet
,VirtualAppliance
,VirtualNetworkGateway
,VnetLocal
,None
.has_bgp_override
- Should the BGP override be enabled for this route table entry? Defaultfalse
.next_hop_ip_address
- The IP address of the next hop. Required ifnext_hop_type
isVirtualAppliance
.
subnets
- (Optional) A map of subnets to create in the virtual network. The value is an object with the following fields:name
- The name of the subnet.address_prefixes
- The IPv4 address prefixes to use for the subnet in CIDR format.nat_gateway
- (Optional) An object with the following fields:id
- The ID of the NAT Gateway which should be associated with the Subnet. Changing this forces a new resource to be created.
network_security_group
- (Optional) An object with the following fields:id
- The ID of the Network Security Group which should be associated with the Subnet. Changing this forces a new association to be created.
private_endpoint_network_policies_enabled
- (Optional) Enable or Disable network policies for the private endpoint on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.private_link_service_network_policies_enabled
- (Optional) Enable or Disable network policies for the private link service on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.assign_generated_route_table
- (Optional) Should the Route Table generated by this module be associated with this Subnet? Defaulttrue
. Cannot be used withexternal_route_table_id
.external_route_table_id
- (Optional) The ID of the Route Table which should be associated with the Subnet. Changing this forces a new association to be created. Cannot be used withassign_generated_route_table
.service_endpoints
- (Optional) The list of Service endpoints to associate with the subnet.service_endpoint_policy_ids
- (Optional) The list of Service Endpoint Policy IDs to associate with the subnet.service_endpoint_policy_assignment_enabled
- (Optional) Should the Service Endpoint Policy be assigned to the subnet? Defaulttrue
.delegation
- (Optional) An object with the following fields:name
- The name of the delegation.service_delegation
- An object with the following fields:name
- The name of the service delegation.actions
- A list of actions that should be delegated, the list is specific to the service being delegated.
firewall
- (Optional) An object with the following fields:sku_name
- The name of the SKU to use for the Azure Firewall. Possible values includeAZFW_Hub
,AZFW_VNet
.sku_tier
- The tier of the SKU to use for the Azure Firewall. Possible values includeBasic
,Standard
,Premium
.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.firewall_policy_id
- (Optional) The resource id of the Azure Firewall Policy to associate with the Azure Firewall.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.name
- (Optional) The name of the firewall resource. If not specified will useafw-{vnetname}
.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.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.tags
- (Optional) A map of tags to apply to the Azure Firewall. If not specifiedzones
- (Optional) A list of availability zones to use for the Azure Firewall. If not specified will benull
.default_ip_configuration
- (Optional) An object with the following fields. If not specified the defaults below will be used:name
- (Optional) The name of the default IP configuration. If not specified will usedefault
.public_ip_config
- (Optional) An object with the following fields:name
- (Optional) The name of the public IP configuration. If not specified will usepip-afw-{vnetname}
.zones
- (Optional) A list of availability zones to use for the public IP configuration. If not specified will benull
.ip_version
- (Optional) The IP version to use for the public IP configuration. Possible values includeIPv4
,IPv6
. If not specified will beIPv4
.sku_tier
- (Optional) The SKU tier to use for the public IP configuration. Possible values includeRegional
,Global
. If not specified will beRegional
.
management_ip_configuration
- (Optional) An object with the following fields. If not specified the defaults below will be used:name
- (Optional) The name of the management IP configuration. If not specified will usedefaultMgmt
.public_ip_config
- (Optional) An object with the following fields:name
- (Optional) The name of the public IP configuration. If not specified will usepip-afw-mgmt-<Map Key>
.zones
- (Optional) A list of availability zones to use for the public IP configuration. If not specified will benull
.ip_version
- (Optional) The IP version to use for the public IP configuration. Possible values includeIPv4
,IPv6
. If not specified will beIPv4
.sku_tier
- (Optional) The SKU tier to use for the public IP configuration. Possible values includeRegional
,Global
. If not specified will beRegional
.
firewall_policy
- (Optional) An object with the following fields. Cannot be used withfirewall_policy_id
. If not specified the defaults below will be used:name
- (Optional) The name of the firewall policy. If not specified will useafw-policy-{vnetname}
.sku
- (Optional) The SKU to use for the firewall policy. Possible values includeStandard
,Premium
.auto_learn_private_ranges_enabled
- (Optional) Should the firewall policy automatically learn private ranges? Defaultfalse
.base_policy_id
- (Optional) The resource id of the base policy to use for the firewall policy.dns
- (Optional) An object with the following fields:proxy_enabled
- (Optional) Should the DNS proxy be enabled for the firewall policy? Defaultfalse
.servers
- (Optional) A list of DNS server IP addresses for the firewall policy.
threat_intelligence_mode
- (Optional) The threat intelligence mode for the firewall policy. Possible values includeAlert
,Deny
,Off
.private_ip_ranges
- (Optional) A list of private IP ranges to use for the firewall policy.threat_intelligence_allowlist
- (Optional) An object with the following fields:fqdns
- (Optional) A set of FQDNs to allowlist for threat intelligence.ip_addresses
- (Optional) A set of IP addresses to allowlist for threat intelligence.
Type:
map(object({
name = string
address_space = list(string)
location = string
resource_group_name = string
route_table_name = optional(string)
bgp_community = optional(string)
ddos_protection_plan_id = optional(string)
dns_servers = optional(list(string))
flow_timeout_in_minutes = optional(number, 4)
mesh_peering_enabled = optional(bool, true)
resource_group_creation_enabled = optional(bool, true)
resource_group_lock_enabled = optional(bool, true)
resource_group_lock_name = optional(string)
resource_group_tags = optional(map(string))
routing_address_space = optional(list(string), [])
hub_router_ip_address = optional(string)
tags = optional(map(string), {})
route_table_entries = optional(set(object({
name = string
address_prefix = string
next_hop_type = string
has_bgp_override = optional(bool, false)
next_hop_ip_address = optional(string)
})), [])
subnets = optional(map(object(
{
name = string
address_prefixes = list(string)
nat_gateway = optional(object({
id = string
}))
network_security_group = optional(object({
id = string
}))
private_endpoint_network_policies_enabled = optional(bool, true)
private_link_service_network_policies_enabled = optional(bool, true)
assign_generated_route_table = optional(bool, true)
external_route_table_id = optional(string)
service_endpoints = optional(set(string))
service_endpoint_policy_ids = optional(set(string))
delegations = optional(list(
object(
{
name = string
service_delegation = object({
name = string
actions = optional(list(string))
})
}
)
))
}
)), {})
firewall = optional(object({
sku_name = string
sku_tier = string
subnet_address_prefix = string
firewall_policy_id = optional(string, null)
management_subnet_address_prefix = optional(string, null)
name = optional(string)
private_ip_ranges = optional(list(string))
subnet_route_table_id = optional(string)
tags = optional(map(string))
zones = optional(list(string))
default_ip_configuration = optional(object({
name = optional(string)
public_ip_config = optional(object({
ip_version = optional(string, "IPv4")
name = optional(string)
sku_tier = optional(string, "Regional")
zones = optional(set(string))
}))
}))
management_ip_configuration = optional(object({
name = optional(string)
public_ip_config = optional(object({
ip_version = optional(string, "IPv4")
name = optional(string)
sku_tier = optional(string, "Regional")
zones = optional(set(string))
}))
}))
firewall_policy = optional(object({
name = optional(string)
sku = optional(string, "Standard")
auto_learn_private_ranges_enabled = optional(bool)
base_policy_id = optional(string)
dns = optional(object({
proxy_enabled = optional(bool, false)
servers = optional(list(string))
}))
threat_intelligence_mode = optional(string, "Alert")
private_ip_ranges = optional(list(string))
threat_intelligence_allowlist = optional(object({
fqdns = optional(set(string))
ip_addresses = optional(set(string))
}))
}))
}))
}))
Default: {}
The following outputs are exported:
Description: A curated output of the firewalls created by this module.
Description: A curated output of the route tables created by this module.
Description: A curated output of the resource groups created by this module.
Description: A curated output of the virtual networks created by this module.
The following Modules are called:
Source: Azure/avm-res-network-publicipaddress/azurerm
Version: 0.1.2
Source: Azure/avm-res-network-publicipaddress/azurerm
Version: 0.1.2
Source: Azure/avm-res-network-firewallpolicy/azurerm
Version: 0.2.3
Source: Azure/avm-res-network-azurefirewall/azurerm
Version: 0.2.2
Source: Azure/avm-res-network-routetable/azurerm
Version: 0.3.1
Source: Azure/avm-res-network-virtualnetwork/azurerm//modules/peering
Version: 0.7.1
Source: Azure/avm-res-network-virtualnetwork/azurerm//modules/subnet
Version: 0.7.1
Source: Azure/avm-res-network-virtualnetwork/azurerm
Version: 0.7.1
The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.