From 17baf0bb2fc51215ec9736930de58a7ce3b4ad4b Mon Sep 17 00:00:00 2001 From: Radek Simko Date: Thu, 23 Apr 2015 13:25:13 +0100 Subject: [PATCH] tags added to s3_bucket docs --- website/source/docs/providers/aws/r/s3_bucket.html.markdown | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/website/source/docs/providers/aws/r/s3_bucket.html.markdown b/website/source/docs/providers/aws/r/s3_bucket.html.markdown index a2a4c7360..0f50d1356 100644 --- a/website/source/docs/providers/aws/r/s3_bucket.html.markdown +++ b/website/source/docs/providers/aws/r/s3_bucket.html.markdown @@ -16,6 +16,11 @@ Provides a S3 bucket resource. resource "aws_s3_bucket" "b" { bucket = "my_tf_test_bucket" acl = "private" + + tags { + Name = "My bucket" + Environment = "Dev" + } } ``` @@ -25,6 +30,7 @@ The following arguments are supported: * `bucket` - (Required) The name of the bucket. * `acl` - (Optional) The canned ACL to apply. Defaults to "private". +* `tags` - (Optional) A mapping of tags to assign to the bucket. ## Attributes Reference