We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f9f9256 + 06bf17e commit eb00254Copy full SHA for eb00254
modules/network/multivpc/main.tf
@@ -24,7 +24,11 @@ locals {
24
maximum_subnetworks = pow(2, local.subnetwork_new_bits)
25
additional_networks = [
26
for vpc in module.vpcs :
27
- merge(var.network_interface_defaults, { network = vpc.network_name, subnetwork = vpc.subnetwork_self_link })
+ merge(var.network_interface_defaults, {
28
+ network = vpc.network_name
29
+ subnetwork = vpc.subnetwork_name
30
+ subnetwork_project = var.project_id
31
+ })
32
]
33
}
34
0 commit comments