Skip to content

Commit ed7c606

Browse files
authored
Update outputs.tf
1 parent 1f895f8 commit ed7c606

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,8 @@ output "aws_s3_bucket_versioning_status" {
6262
description = "The versioning status of the bucket. Will be 'Enabled', 'Suspended', or 'Disabled'."
6363
value = try(aws_s3_bucket_versioning.this[0].versioning_configuration[0].status, null)
6464
}
65+
66+
output "s3_bucket_tags_all" {
67+
description = "Tags of the bucket."
68+
value = try(aws_s3_bucket.this[0].tags_all, null)
69+
}

0 commit comments

Comments
 (0)