Merge pull request #20760 from hashicorp/mar19_s3_path_style
website: document s3 backend's force_path_style argument
This commit is contained in:
commit
2e6c316fc9
|
@ -112,9 +112,9 @@ data "terraform_remote_state" "network" {
|
|||
}
|
||||
```
|
||||
|
||||
The `terraform_remote_state` data source will return all of the root module
|
||||
outputs defined in the referenced remote state (but not any outputs from
|
||||
nested modules unless they are explicitly output again in the root). An
|
||||
The `terraform_remote_state` data source will return all of the root module
|
||||
outputs defined in the referenced remote state (but not any outputs from
|
||||
nested modules unless they are explicitly output again in the root). An
|
||||
example output might look like:
|
||||
|
||||
```
|
||||
|
@ -175,6 +175,7 @@ The following configuration options or environment variables are supported:
|
|||
* `dynamodb_endpoint` / `AWS_DYNAMODB_ENDPOINT` - (Optional) A custom endpoint for the DynamoDB API.
|
||||
* `iam_endpoint` / `AWS_IAM_ENDPOINT` - (Optional) A custom endpoint for the IAM API.
|
||||
* `sts_endpoint` / `AWS_STS_ENDPOINT` - (Optional) A custom endpoint for the STS API.
|
||||
* `force_path_style` - (Optional) Always use path-style S3 URLs (`https://<HOST>/<BUCKET>` instead of `https://<BUCKET>.<HOST>`).
|
||||
* `skip_credentials_validation` - (Optional) Skip the credentials validation via the STS API.
|
||||
* `skip_get_ec2_platforms` - (**DEPRECATED**, Optional) Skip getting the supported EC2 platforms.
|
||||
* `skip_region_validation` - (**DEPRECATED**, Optional) Skip validation of provided region name.
|
||||
|
|
Loading…
Reference in New Issue