Skip to content

Commit 5e4b469

Browse files
committed
correct region tags
1 parent 537ab1c commit 5e4b469

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

vpc/network_ipv6/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resource "google_compute_network" "default" {
2222
}
2323
# [END vpc_ipv6_internal]
2424

25-
# [START subnet_dual_stack]
25+
# [START vpc_subnet_dual_stack]
2626
resource "google_compute_subnetwork" "subnet_dual_stack" {
2727
name = "subnet-dual-stack"
2828
ip_cidr_range = "10.0.0.0/22"
@@ -31,14 +31,14 @@ resource "google_compute_subnetwork" "subnet_dual_stack" {
3131
ipv6_access_type = "INTERNAL"
3232
network = google_compute_network.default.id
3333
}
34-
# [END subnet_dual_stack]
34+
# [END vpc_subnet_dual_stack]
3535

36-
# [START subnet_ipv6_only]
36+
# [START vpc_subnet_ipv6_only]
3737
resource "google_compute_subnetwork" "subnet_ipv6_only" {
3838
name = "subnet-ipv6-only"
3939
region = "us-central1"
4040
network = google_compute_network.default.id
4141
stack_type = "IPV6_ONLY"
4242
ipv6_access_type = "INTERNAL"
4343
}
44-
# [END subnet_ipv6_only]
44+
# [END vpc_subnet_ipv6_only]

0 commit comments

Comments
 (0)