File tree Expand file tree Collapse file tree 4 files changed +13
-16
lines changed Expand file tree Collapse file tree 4 files changed +13
-16
lines changed Original file line number Diff line number Diff line change @@ -279,8 +279,6 @@ Terraform version 0.10.3 or newer is required for this module to work.
279
279
| vpc_endpoint_s3_pl_id | The prefix list for the S3 VPC endpoint. |
280
280
| vpc_id | VPC |
281
281
| 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 |
284
282
| vpc_main_route_table_id | The ID of the main route table associated with this VPC |
285
283
286
284
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
Original file line number Diff line number Diff line change @@ -27,6 +27,5 @@ Note that this example may create resources which can cost money (AWS Elastic IP
27
27
| public_subnets | List of IDs of public subnets |
28
28
| vpc_cidr_block | CIDR blocks |
29
29
| vpc_id | VPC |
30
- | vpc_ipv6_cidr_block | The IPv6 CIDR block |
31
30
32
31
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ output "vpc_cidr_block" {
10
10
value = [" ${ module . vpc . vpc_cidr_block } " ]
11
11
}
12
12
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
+ // }
17
17
18
18
# Subnets
19
19
output "private_subnets" {
Original file line number Diff line number Diff line change @@ -49,15 +49,15 @@ output "vpc_main_route_table_id" {
49
49
value = " ${ element (concat (aws_vpc. this . * . main_route_table_id , list (" " )), 0 )} "
50
50
}
51
51
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
+ // }
61
61
62
62
# Subnets
63
63
output "private_subnets" {
You can’t perform that action at this time.
0 commit comments