Skip to content

Commit e651b0b

Browse files
authored
Removed classiclink from outputs because it is not present in recent regions (terraform-aws-modules#78)
1 parent c4bc048 commit e651b0b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

outputs.tf

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ output "vpc_enable_dns_hostnames" {
3939
value = "${element(concat(aws_vpc.this.*.enable_dns_hostnames, list("")), 0)}"
4040
}
4141

42-
output "vpc_enable_classiclink" {
43-
description = "Whether or not the VPC has Classiclink enabled"
44-
value = "${element(concat(aws_vpc.this.*.enable_classiclink, list("")), 0)}"
45-
}
42+
//output "vpc_enable_classiclink" {
43+
// description = "Whether or not the VPC has Classiclink enabled"
44+
// value = "${element(concat(aws_vpc.this.*.enable_classiclink, list("")), 0)}"
45+
//}
4646

4747
output "vpc_main_route_table_id" {
4848
description = "The ID of the main route table associated with this VPC"
@@ -230,10 +230,10 @@ output "default_vpc_enable_dns_hostnames" {
230230
value = "${element(concat(aws_default_vpc.this.*.enable_dns_hostnames, list("")), 0)}"
231231
}
232232

233-
output "default_vpc_enable_classiclink" {
234-
description = "Whether or not the VPC has Classiclink enabled"
235-
value = "${element(concat(aws_default_vpc.this.*.enable_classiclink, list("")), 0)}"
236-
}
233+
//output "default_vpc_enable_classiclink" {
234+
// description = "Whether or not the VPC has Classiclink enabled"
235+
// value = "${element(concat(aws_default_vpc.this.*.enable_classiclink, list("")), 0)}"
236+
//}
237237

238238
output "default_vpc_main_route_table_id" {
239239
description = "The ID of the main route table associated with this VPC"

0 commit comments

Comments
 (0)