Azure / terraform-azurerm-caf-enterprise-scale

Azure landing zones Terraform module
https://aka.ms/alz/tf
MIT License
857 stars 569 forks source link

BGP peers at vhub level #882

Open burimali opened 10 months ago

burimali commented 10 months ago

Community Note

Description

Currently caf-enterprise-scale does not provide the option to define BGP peers hat Hub level only at vpn gateway level.

This would be needed for the case when peering with to a virtual appliance which might be an SD-WAN appliance.

image

Describe the solution you'd like

  vwan_hub_networks = [
    {
      enabled = true
      config = {
        address_prefix                            = "10.x.y.0/23"
        location                                  = "regionsouth"
        sku                                       = "Standard"
        routes                                    = []
        expressroute_gateway                      = {}
        vpn_gateway                               = {}
        azure_firewall                            = {}
        spoke_virtual_network_resource_ids        = []
        secure_spoke_virtual_network_resource_ids = []
        **bgp_peers                                 = {}**
        enable_virtual_hub_connections            = true
      }
  ]
Mousling1992 commented 10 months ago

will be interested also to know the answer.