Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug: fix law race condition #129

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 19 additions & 25 deletions templates/complete_vnext/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,6 @@ module "management_resources" {
providers = {
azurerm = azurerm.management
}

depends_on = [
module.management_groups_layer_7
]
}

module "hubnetworking" {
Expand All @@ -131,27 +127,25 @@ module "virtual_network_gateway" {

for_each = local.module_virtual_network_gateway

location = each.value.location
name = each.value.name
sku = each.value.sku
type = each.value.type
virtual_network_name = each.value.virtual_network_name
virtual_network_resource_group_name = each.value.virtual_network_resource_group_name
default_tags = try(each.value.default_tags, null)
edge_zone = try(each.value.edge_zone, null)
enable_telemetry = false
express_route_circuits = try(each.value.express_route_circuits, null)
ip_configurations = try(each.value.ip_configurations, null)
local_network_gateways = try(each.value.local_network_gateways, null)
subnet_address_prefix = try(each.value.subnet_address_prefix, null)
subnet_id = try(each.value.subnet_id, null)
tags = try(each.value.tags, null)
vpn_active_active_enabled = try(each.value.vpn_active_active_enabled, null)
vpn_bgp_enabled = try(each.value.vpn_bgp_enabled, null)
vpn_bgp_settings = try(each.value.vpn_bgp_settings, null)
vpn_generation = try(each.value.vpn_generation, null)
vpn_point_to_site = try(each.value.vpn_point_to_site, null)
vpn_type = try(each.value.vpn_type, null)
location = each.value.location
name = each.value.name
sku = each.value.sku
type = each.value.type
virtual_network_id = each.value.virtual_network_id
default_tags = try(each.value.default_tags, null)
edge_zone = try(each.value.edge_zone, null)
enable_telemetry = false
express_route_circuits = try(each.value.express_route_circuits, null)
ip_configurations = try(each.value.ip_configurations, null)
local_network_gateways = try(each.value.local_network_gateways, null)
subnet_address_prefix = try(each.value.subnet_address_prefix, null)
tags = try(each.value.tags, null)
vpn_active_active_enabled = try(each.value.vpn_active_active_enabled, null)
vpn_bgp_enabled = try(each.value.vpn_bgp_enabled, null)
vpn_bgp_settings = try(each.value.vpn_bgp_settings, null)
vpn_generation = try(each.value.vpn_generation, null)
vpn_point_to_site = try(each.value.vpn_point_to_site, null)
vpn_type = try(each.value.vpn_type, null)

providers = {
azurerm = azurerm.connectivity
Expand Down
Loading