Commit e651b0b6 authored by Anton Babenko's avatar Anton Babenko Committed by GitHub

Removed classiclink from outputs because it is not present in recent regions (#78)

parent c4bc0483
......@@ -39,10 +39,10 @@ output "vpc_enable_dns_hostnames" {
value = "${element(concat(aws_vpc.this.*.enable_dns_hostnames, list("")), 0)}"
}
output "vpc_enable_classiclink" {
description = "Whether or not the VPC has Classiclink enabled"
value = "${element(concat(aws_vpc.this.*.enable_classiclink, list("")), 0)}"
}
//output "vpc_enable_classiclink" {
// description = "Whether or not the VPC has Classiclink enabled"
// value = "${element(concat(aws_vpc.this.*.enable_classiclink, list("")), 0)}"
//}
output "vpc_main_route_table_id" {
description = "The ID of the main route table associated with this VPC"
......@@ -230,10 +230,10 @@ output "default_vpc_enable_dns_hostnames" {
value = "${element(concat(aws_default_vpc.this.*.enable_dns_hostnames, list("")), 0)}"
}
output "default_vpc_enable_classiclink" {
description = "Whether or not the VPC has Classiclink enabled"
value = "${element(concat(aws_default_vpc.this.*.enable_classiclink, list("")), 0)}"
}
//output "default_vpc_enable_classiclink" {
// description = "Whether or not the VPC has Classiclink enabled"
// value = "${element(concat(aws_default_vpc.this.*.enable_classiclink, list("")), 0)}"
//}
output "default_vpc_main_route_table_id" {
description = "The ID of the main route table associated with this VPC"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment