From 4433b3ebe72b56a1006472b371a735b989b2e89c Mon Sep 17 00:00:00 2001 From: Patrick de Ruiter Date: Thu, 6 Aug 2020 10:00:09 +0200 Subject: [PATCH] Changed public_route_table_id to string instead of list of strings --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 0421677..1c58957 100644 --- a/variables.tf +++ b/variables.tf @@ -11,7 +11,7 @@ variable "enable_s3_endpoint" { variable "public_route_table_id" { description = "Public route table of the VPC where then endpoint is located" - type = list(string) + type = string } variable "private_route_table_id" {