From 22d555144dc810b73466429194f11d9c2a3375c6 Mon Sep 17 00:00:00 2001 From: Anton Babenko Date: Sat, 10 Feb 2018 16:07:27 +0100 Subject: [PATCH] Removed classiclink from outputs because it is not present in recent regions --- outputs.tf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/outputs.tf b/outputs.tf index 72df14552..763b70829 100644 --- a/outputs.tf +++ b/outputs.tf @@ -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"