Skip to content

Commit 7bf1a88

Browse files
authored
Merge branch 'master' into feat/s3_bucket_metadata_config
2 parents 78cc8ce + 67c046e commit 7bf1a88

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [5.3.1](https://github.com/terraform-aws-modules/terraform-aws-s3-bucket/compare/v5.3.0...v5.3.1) (2025-08-05)
6+
7+
8+
### Bug Fixes
9+
10+
* Use the specified region to retrieve the current AWS region ([#348](https://github.com/terraform-aws-modules/terraform-aws-s3-bucket/issues/348)) ([453fcb9](https://github.com/terraform-aws-modules/terraform-aws-s3-bucket/commit/453fcb9d7e6b38755c3f5262da042bf0c887c6b5))
11+
512
## [5.3.0](https://github.com/terraform-aws-modules/terraform-aws-s3-bucket/compare/v5.2.0...v5.3.0) (2025-08-05)
613

714

main.tf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
data "aws_region" "current" {}
1+
data "aws_region" "current" {
2+
region = var.region
3+
}
24

35
data "aws_canonical_user_id" "this" {
46
count = local.create_bucket && local.create_bucket_acl && try(var.owner["id"], null) == null ? 1 : 0

0 commit comments

Comments
 (0)