Skip to content

Commit 06bf17e

Browse files
committed
Update the revert to span across three lines for readability
1 parent e336fa4 commit 06bf17e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

modules/network/multivpc/main.tf

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ locals {
2424
maximum_subnetworks = pow(2, local.subnetwork_new_bits)
2525
additional_networks = [
2626
for vpc in module.vpcs :
27-
merge(var.network_interface_defaults, { network = vpc.network_name, subnetwork = vpc.subnetwork_name, subnetwork_project = var.project_id })
27+
merge(var.network_interface_defaults, {
28+
network = vpc.network_name
29+
subnetwork = vpc.subnetwork_name
30+
subnetwork_project = var.project_id
31+
})
2832
]
2933
}
3034

0 commit comments

Comments
 (0)