Skip to content

Commit

Permalink
fix: Updated outputs in ipv6 example (terraform-aws-modules#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
allan-simon authored and DrFaust92 committed Jun 20, 2020
1 parent 78271ab commit 67adee6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/ipv6/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ output "vpc_id" {
value = module.vpc.vpc_id
}

output "ipv6_association_id" {
output "ipv6_cidr_block" {
description = "The 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"
value = module.vpc.vpc_ipv6_association_id
}

0 comments on commit 67adee6

Please sign in to comment.