provider/aws: Fix wording in S3 bucket docs
This commit is contained in:
parent
f2ce28ed46
commit
2cba2d3d04
|
@ -102,13 +102,13 @@ The following arguments are supported:
|
||||||
* `versioning` - (Optional) A state of [versioning](http://docs.aws.amazon.com/AmazonS3/latest/dev/Versioning.html) (documented below)
|
* `versioning` - (Optional) A state of [versioning](http://docs.aws.amazon.com/AmazonS3/latest/dev/Versioning.html) (documented below)
|
||||||
* `logging` - (Optional) A settings of [bucket logging](http://docs.aws.amazon.com/AmazonS3/latest/UG/ManagingBucketLogging.html) (documented below).
|
* `logging` - (Optional) A settings of [bucket logging](http://docs.aws.amazon.com/AmazonS3/latest/UG/ManagingBucketLogging.html) (documented below).
|
||||||
|
|
||||||
The website object supports the following:
|
The `website` object supports the following:
|
||||||
|
|
||||||
* `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.
|
* `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.
|
||||||
* `error_document` - (Optional) An absolute path to the document to return in case of a 4XX error.
|
* `error_document` - (Optional) An absolute path to the document to return in case of a 4XX error.
|
||||||
* `redirect_all_requests_to` - (Optional) A hostname to redirect all website requests for this bucket to.
|
* `redirect_all_requests_to` - (Optional) A hostname to redirect all website requests for this bucket to.
|
||||||
|
|
||||||
The CORS supports the following:
|
The `CORS` object supports the following:
|
||||||
|
|
||||||
* `allowed_headers` (Optional) Specifies which headers are allowed.
|
* `allowed_headers` (Optional) Specifies which headers are allowed.
|
||||||
* `allowed_methods` (Required) Specifies which methods are allowed. Can be `GET`, `PUT`, `POST`, `DELETE` or `HEAD`.
|
* `allowed_methods` (Required) Specifies which methods are allowed. Can be `GET`, `PUT`, `POST`, `DELETE` or `HEAD`.
|
||||||
|
@ -116,11 +116,11 @@ The CORS supports the following:
|
||||||
* `expose_headers` (Optional) Specifies expose header in the response.
|
* `expose_headers` (Optional) Specifies expose header in the response.
|
||||||
* `max_age_seconds` (Optional) Specifies time in seconds that browser can cache the response for a preflight request.
|
* `max_age_seconds` (Optional) Specifies time in seconds that browser can cache the response for a preflight request.
|
||||||
|
|
||||||
The versioning supports the following:
|
The `versioning` object supports the following:
|
||||||
|
|
||||||
* `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.
|
* `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.
|
||||||
|
|
||||||
The logging supports the following:
|
The `logging` object supports the following:
|
||||||
|
|
||||||
* `target_bucket` - (Required) The name of the bucket that will receive the log objects.
|
* `target_bucket` - (Required) The name of the bucket that will receive the log objects.
|
||||||
* `target_prefix` - (Optional) To specify a key prefix for log objects.
|
* `target_prefix` - (Optional) To specify a key prefix for log objects.
|
||||||
|
|
Loading…
Reference in New Issue