From 7fdd9abb06e1a523cf91eaa82e06a5abff15b1a5 Mon Sep 17 00:00:00 2001 From: Brian Kanya Date: Mon, 2 Oct 2023 09:19:45 -0400 Subject: [PATCH] fix: update simple IPv6 subnet example (#498) --- examples/simple_ipv6_project/main.tf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/simple_ipv6_project/main.tf b/examples/simple_ipv6_project/main.tf index d4b61f29..692c5f14 100644 --- a/examples/simple_ipv6_project/main.tf +++ b/examples/simple_ipv6_project/main.tf @@ -29,11 +29,11 @@ module "test-vpc-module" { subnets = [ { - subnet_name = "subnet-01" - subnet_ip = "10.10.10.0/24" - subnet_region = "us-west1" - stack = "IPV4_IPV6" - ipv6_type = "EXTERNAL" + subnet_name = "subnet-01" + subnet_ip = "10.10.10.0/24" + subnet_region = "us-west1" + stack_type = "IPV4_IPV6" + ipv6_access_type = "EXTERNAL" }, { subnet_name = "subnet-02"