Skip to content

Commit aa953c6

Browse files
authored
Fix: tags_all default value in outputs.tf
1 parent ed7c606 commit aa953c6

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
@@ -65,5 +65,5 @@ output "aws_s3_bucket_versioning_status" {
6565

6666
output "s3_bucket_tags_all" {
6767
description = "Tags of the bucket."
68-
value = try(aws_s3_bucket.this[0].tags_all, null)
68+
value = try(aws_s3_bucket.this[0].tags_all, {})
6969
}

0 commit comments

Comments
 (0)