Skip to content

Commit 553d76a

Browse files
authored
Removed IPv6 from outputs (fixed #157) (#158)
1 parent a9e92d2 commit 553d76a

File tree

4 files changed

+13
-16
lines changed

4 files changed

+13
-16
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,6 @@ Terraform version 0.10.3 or newer is required for this module to work.
279279
| vpc_endpoint_s3_pl_id | The prefix list for the S3 VPC endpoint. |
280280
| vpc_id | VPC |
281281
| vpc_instance_tenancy | Tenancy of instances spin up within VPC |
282-
| vpc_ipv6_association_id | The association ID for the IPv6 CIDR block |
283-
| vpc_ipv6_cidr_block | The IPv6 CIDR block |
284282
| vpc_main_route_table_id | The ID of the main route table associated with this VPC |
285283

286284
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

examples/simple-vpc/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,5 @@ Note that this example may create resources which can cost money (AWS Elastic IP
2727
| public_subnets | List of IDs of public subnets |
2828
| vpc_cidr_block | CIDR blocks |
2929
| vpc_id | VPC |
30-
| vpc_ipv6_cidr_block | The IPv6 CIDR block |
3130

3231
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

examples/simple-vpc/outputs.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ output "vpc_cidr_block" {
1010
value = ["${module.vpc.vpc_cidr_block}"]
1111
}
1212

13-
output "vpc_ipv6_cidr_block" {
14-
description = "The IPv6 CIDR block"
15-
value = ["${module.vpc.vpc_ipv6_cidr_block}"]
16-
}
13+
//output "vpc_ipv6_cidr_block" {
14+
// description = "The IPv6 CIDR block"
15+
// value = ["${module.vpc.vpc_ipv6_cidr_block}"]
16+
//}
1717

1818
# Subnets
1919
output "private_subnets" {

outputs.tf

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ output "vpc_main_route_table_id" {
4949
value = "${element(concat(aws_vpc.this.*.main_route_table_id, list("")), 0)}"
5050
}
5151

52-
output "vpc_ipv6_association_id" {
53-
description = "The association ID for the IPv6 CIDR block"
54-
value = "${element(concat(aws_vpc.this.*.ipv6_association_id, list("")), 0)}"
55-
}
56-
57-
output "vpc_ipv6_cidr_block" {
58-
description = "The IPv6 CIDR block"
59-
value = "${element(concat(aws_vpc.this.*.ipv6_cidr_block, list("")), 0)}"
60-
}
52+
//output "vpc_ipv6_association_id" {
53+
// description = "The association ID for the IPv6 CIDR block"
54+
// value = "${element(concat(aws_vpc.this.*.ipv6_association_id, list("")), 0)}"
55+
//}
56+
//
57+
//output "vpc_ipv6_cidr_block" {
58+
// description = "The IPv6 CIDR block"
59+
// value = "${element(concat(aws_vpc.this.*.ipv6_cidr_block, list("")), 0)}"
60+
//}
6161

6262
# Subnets
6363
output "private_subnets" {

0 commit comments

Comments
 (0)