Commit b42905b9 authored by Allan Simon's avatar Allan Simon Committed by GitHub

fix: Updated outputs in ipv6 example (#375)

parent 23b0a02d
...@@ -4,12 +4,12 @@ output "vpc_id" { ...@@ -4,12 +4,12 @@ output "vpc_id" {
value = module.vpc.vpc_id value = module.vpc.vpc_id
} }
output "ipv6_association_id" { output "ipv6_cidr_block" {
description = "The IPv6 CIDR block" description = "The IPv6 CIDR block"
value = module.vpc.vpc_ipv6_cidr_block value = module.vpc.vpc_ipv6_cidr_block
} }
output "ipv6_cidr_block" { output "ipv6_association_id" {
description = "The association ID for the IPv6 CIDR block" description = "The association ID for the IPv6 CIDR block"
value = module.vpc.vpc_ipv6_association_id value = module.vpc.vpc_ipv6_association_id
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment