github.com/turtlemonvh/terraform@v0.6.9-0.20151204001754-8e40b6b855e8/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  ### Private Bucket w/ Tags
    16  
    17  ```
    18  resource "aws_s3_bucket" "b" {
    19      bucket = "my_tf_test_bucket"
    20      acl = "private"
    21  
    22      tags {
    23          Name = "My bucket"
    24          Environment = "Dev"
    25      }
    26  }
    27  ```
    28  
    29  ### Static Website Hosting
    30  
    31  ```
    32  resource "aws_s3_bucket" "b" {
    33      bucket = "s3-website-test.hashicorp.com"
    34      acl = "public-read"
    35      policy = "${file("policy.json")}"
    36  
    37      website {
    38          index_document = "index.html"
    39          error_document = "error.html"
    40      }
    41  }
    42  ```
    43  
    44  ### Using CORS
    45  
    46  ```
    47  resource "aws_s3_bucket" "b" {
    48      bucket = "s3-website-test.hashicorp.com"
    49      acl = "public-read"
    50  
    51      cors_rule {
    52          allowed_headers = ["*"]
    53          allowed_methods = ["PUT","POST"]
    54          allowed_origins = ["https://s3-website-test.hashicorp.com"]
    55          expose_headers = ["ETag"]
    56          max_age_seconds = 3000
    57      }
    58  }
    59  ```
    60  
    61  ### Using versioning
    62  
    63  ```
    64  resource "aws_s3_bucket" "b" {
    65      bucket = "my_tf_test_bucket"
    66      acl = "private"
    67      versioning {
    68          enabled = true
    69      }
    70  }
    71  ```
    72  
    73  ## Argument Reference
    74  
    75  The following arguments are supported:
    76  
    77  * `bucket` - (Required) The name of the bucket.
    78  * `acl` - (Optional) The [canned ACL](http://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl) to apply. Defaults to "private".
    79  * `policy` - (Optional) A valid [bucket policy](http://docs.aws.amazon.com/AmazonS3/latest/dev/example-bucket-policies.html) JSON document. Note that if the policy document is not specific enough (but still valid), Terraform may view the policy as constantly changing in a `terraform plan`. In this case, please make sure you use the verbose/specific version of the policy.
    80  
    81  * `tags` - (Optional) A mapping of tags to assign to the bucket.
    82  * `force_destroy` - (Optional, Default:false ) A boolean that indicates all objects should be deleted from the bucket so that the bucket can be destroyed without error. These objects are *not* recoverable.
    83  * `website` - (Optional) A website object (documented below).
    84  * `cors_rule` - (Optional) A rule of [Cross-Origin Resource Sharing](http://docs.aws.amazon.com/AmazonS3/latest/dev/cors.html) (documented below).
    85  * `versioning` - (Optional) A state of [versioning](http://docs.aws.amazon.com/AmazonS3/latest/dev/Versioning.html) (documented below)
    86  
    87  The website object supports the following:
    88  
    89  * `index_document` - (Required, unless using `redirect_all_requests_to`) Amazon S3 returns this index document when requests are made to the root domain or any of the subfolders.
    90  * `error_document` - (Optional) An absolute path to the document to return in case of a 4XX error.
    91  * `redirect_all_requests_to` - (Optional) A hostname to redirect all website requests for this bucket to.
    92  
    93  The CORS supports the following:
    94  
    95  * `allowed_headers` (Optional) Specifies which headers are allowed.
    96  * `allowed_methods` (Required) Specifies which methods are allowed. Can be `GET`, `PUT`, `POST`, `DELETE` or `HEAD`.
    97  * `allowed_origins` (Required) Specifies which origins are allowed.
    98  * `expose_headers` (Optional) Specifies expose header in the response.
    99  * `max_age_seconds` (Optional) Specifies time in seconds that browser can cache the response for a preflight request.
   100  
   101  The versioning supports the following:
   102  
   103  * `enabled` - (Optional) Enable versioning. Once you version-enable a bucket, it can never return to an unversioned state. You can, however, suspend versioning on that bucket.
   104  
   105  ## Attributes Reference
   106  
   107  The following attributes are exported:
   108  
   109  * `id` - The name of the bucket.
   110  * `arn` - The ARN of the bucket. Will be of format `arn:aws:s3:::bucketname`
   111  * `hosted_zone_id` - The [Route 53 Hosted Zone ID](http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_website_region_endpoints) for this bucket's region.
   112  * `region` - The AWS region this bucket resides in.
   113  * `website_endpoint` - The website endpoint, if the bucket is configured with a website. If not, this will be an empty string.
   114  * `website_domain` - The domain of the website endpoint, if the bucket is configured with a website. If not, this will be an empty string. This is used to create Route 53 alias records.