github.com/chalford/terraform@v0.3.7-0.20150113080010-a78c69a8c81f/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 description: |- 6 Provides a S3 bucket resource. 7 --- 8 9 # aws\_s3\_bucket 10 11 Provides a S3 bucket resource. 12 13 ## Example Usage 14 15 ``` 16 resource "aws_s3_bucket" "b" { 17 bucket = "my_tf_test_bucket" 18 acl = "private" 19 } 20 ``` 21 22 ## Argument Reference 23 24 The following arguments are supported: 25 26 * `bucket` - (Required) The name of the bucket. 27 * `acl` - (Optional) The canned ACL to apply. Defaults to "private". 28 29 ## Attributes Reference 30 31 The following attributes are exported: 32 33 * `id` - The name of the bucket 34