From 6fbef68acb15e77dca8cebf696a64429f7c83766 Mon Sep 17 00:00:00 2001 From: Patrick de Ruiter Date: Thu, 6 Aug 2020 13:32:09 +0200 Subject: [PATCH] Changed boolean from false to true for the enable_s3_endpoint variable --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index a65a6a1..30b8eed 100644 --- a/variables.tf +++ b/variables.tf @@ -6,7 +6,7 @@ variable "vpc_id" { variable "enable_s3_endpoint" { description = "Should be true if you want to provision an S3 endpoint to the VPC" type = bool - default = false + default = true } variable "public_route_table_ids" {