github.com/adamar/terraform@v0.2.2-0.20141016210445-2e703afdad0e/website/source/docs/providers/aws/r/s3_bucket.html.markdown (about) 1 --- 2 layout: "aws" 3 page_title: "AWS: aws_s3_bucket" 4 sidebar_current: "docs-aws-resource-s3-bucket" 5 --- 6 7 # aws\_s3\_bucket 8 9 Provides a S3 bucket resource. 10 11 ## Example Usage 12 13 ``` 14 resource "aws_s3_bucket" "b" { 15 bucket = "my_tf_test_bucket" 16 acl = "private" 17 } 18 ``` 19 20 ## Argument Reference 21 22 The following arguments are supported: 23 24 * `bucket` - (Required) The name of the bucket. 25 * `acl` - (Optional) The canned ACL to apply. Defaults to "private". 26 27 ## Attributes Reference 28 29 The following attributes are exported: 30 31 * `id` - The name of the bucket 32