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" }