Skip to content

Commit 59e8060

Browse files
authored
fix: Fixed output of bucket region (#343)
1 parent 1e9b7d9 commit 59e8060

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ output "s3_bucket_policy" {
3535

3636
output "s3_bucket_region" {
3737
description = "The AWS region this bucket resides in."
38-
value = try(aws_s3_bucket.this[0].region, "")
38+
value = try(aws_s3_bucket.this[0].bucket_region, "")
3939
}
4040

4141
output "s3_bucket_website_endpoint" {

0 commit comments

Comments
 (0)