We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f895f8 commit ed7c606Copy full SHA for ed7c606
outputs.tf
@@ -62,3 +62,8 @@ output "aws_s3_bucket_versioning_status" {
62
description = "The versioning status of the bucket. Will be 'Enabled', 'Suspended', or 'Disabled'."
63
value = try(aws_s3_bucket_versioning.this[0].versioning_configuration[0].status, null)
64
}
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