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.
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 -->
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
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 -->
Original file line number Diff line number Diff 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
1919output "private_subnets" {
Original file line number Diff line number Diff 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
6363output "private_subnets" {
You can’t perform that action at this time.
0 commit comments