This module creates a Virtual Hub and attach it to an existing Virtual Wan.
Module version | Terraform version | OpenTofu version | AzureRM version |
---|---|---|---|
>= 8.x.x | Unverified | 1.8.x | >= 4.0 |
>= 7.x.x | 1.3.x | >= 3.0 | |
>= 6.x.x | 1.x | >= 3.0 | |
>= 5.x.x | 0.15.x | >= 2.0 | |
>= 4.x.x | 0.13.x / 0.14.x | >= 2.0 | |
>= 3.x.x | 0.12.x | >= 2.0 | |
>= 2.x.x | 0.12.x | < 2.0 | |
< 2.x.x | 0.11.x | < 2.0 |
If you want to contribute to this repository, feel free to use our pre-commit git hook configuration which will help you automatically update and format some files for you by enforcing our Terraform code module best-practices.
More details are available in the CONTRIBUTING.md file.
This module is optimized to work with the Claranet terraform-wrapper tool
which set some terraform variables in the environment needed by this module.
More details about variables set by the terraform-wrapper
available in the documentation.
module "azure_region" {
source = "claranet/regions/azurerm"
version = "x.x.x"
azure_region = var.azure_region
}
module "rg" {
source = "claranet/rg/azurerm"
version = "x.x.x"
client_name = var.client_name
environment = var.environment
location = module.azure_region.location
stack = var.stack
}
module "logs" {
source = "claranet/run/azurerm//modules/logs"
version = "x.x.x"
client_name = var.client_name
location = module.azure_region.location
location_short = module.azure_region.location_short
environment = var.environment
stack = var.stack
resource_group_name = module.rg.resource_group_name
}
data "azurerm_virtual_wan" "virtual_wan" {
name = var.virtual_wan_name
resource_group_name = var.virtual_wan_resource_group_name
}
module "virtual_hub" {
source = "claranet/virtual-wan/azurerm//modules/virtual-hub"
version = "x.x.x"
client_name = var.client_name
environment = var.environment
stack = var.stack
location = module.azure_region.location
location_short = module.azure_region.location_short
resource_group_name = module.rg.resource_group_name
virtual_hub_address_prefix = "10.0.0.0/23"
virtual_wan_id = data.azurerm_virtual_wan.virtual_wan.id
extra_tags = local.tags
}
locals {
tags = {
env = "prod"
stack = "hub"
}
}
Name | Version |
---|---|
azurecaf | ~> 1.2, >= 1.2.22 |
azurerm | ~> 3.39 |
No modules.
Name | Type |
---|---|
azurerm_virtual_hub.vhub | resource |
azurerm_virtual_hub_connection.peer_vnets_to_hub | resource |
azurecaf_name.virtual_hub | data source |
Name | Description | Type | Default | Required |
---|---|---|---|---|
client_name | Name of client. | string |
n/a | yes |
custom_virtual_hub_name | Custom Virtual Hub's name | string |
null |
no |
default_tags_enabled | Option to enabled or disable default tags | bool |
true |
no |
environment | Name of application's environment. | string |
n/a | yes |
extra_tags | Tags for this Virtual Hub | map(string) |
{} |
no |
internet_security_enabled | Define internet security parameter in Virtual Hub Connections if set | bool |
null |
no |
location | Azure location. | string |
n/a | yes |
location_short | Short string for Azure location. | string |
n/a | yes |
name_prefix | Prefix for generated resources names. | string |
"" |
no |
name_slug | Slug to use with the generated resources names. | string |
"" |
no |
name_suffix | Suffix for the generated resources names. | string |
"" |
no |
peered_virtual_networks | Virtual Networks to peer with the Virtual Hub. | list(object({ |
[] |
no |
resource_group_name | Name of the application's resource group. | string |
n/a | yes |
stack | Name of application's stack. | string |
n/a | yes |
virtual_hub_address_prefix | The address prefix which should be used for this Virtual Hub. Cannot be smaller than a /24. A /23 is recommended by Azure | string |
n/a | yes |
virtual_hub_routes | List of route blocks. next_hop_ip_address values can be azure_firewall or an IP address. |
list(object({ |
[] |
no |
virtual_hub_sku | The SKU of the Virtual Hub. Possible values are Basic and Standard |
string |
"Standard" |
no |
virtual_wan_id | ID of the Virtual Wan which host this Virtual Hub | string |
n/a | yes |
Name | Description |
---|---|
virtual_hub_default_route_table_id | ID of the default route table in the Virtual Hub |
virtual_hub_id | ID of the virtual hub |