From ae438ca7ce79d00ce5f5b297eabdc6b488d34751 Mon Sep 17 00:00:00 2001 From: badra001 Date: Tue, 14 Mar 2023 15:03:10 -0400 Subject: [PATCH] - common - make bucket_key_enabled=true (default) --- CHANGELOG.md | 4 ++++ common/variables.s3.tf | 2 +- common/version.tf | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c709da0..28da2fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -167,3 +167,7 @@ This works with the Terraform AWS provider 4.x, released 2022-02. * 3.3.7 -- 2023-01-13 - common - add variable override_prefixes (advanced usage only) + +* 3.3.8 -- 2023-03-14 + - common + - make bucket_key_enabled=true (default) diff --git a/common/variables.s3.tf b/common/variables.s3.tf index 043097c..6fe7c67 100644 --- a/common/variables.s3.tf +++ b/common/variables.s3.tf @@ -76,7 +76,7 @@ variable "bucket_owner" { variable "bucket_key_enabled" { description = "Enable or disable the use of S3 Bucket Keys (see AWS documenation at https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucket-key.html)." type = bool - default = false + default = true } variable "name_include_region" { diff --git a/common/version.tf b/common/version.tf index 1f246ee..ba304cf 100644 --- a/common/version.tf +++ b/common/version.tf @@ -1,3 +1,3 @@ locals { - _module_version = "3.3.7" + _module_version = "3.3.8" }