From 88fcb67cc7feb170ae6b7577db18efeaa6d2a987 Mon Sep 17 00:00:00 2001 From: Nick Fagerlund Date: Tue, 19 Mar 2019 11:48:44 -0700 Subject: [PATCH] website: document s3 backend's force_path_style argument Added in https://github.com/hashicorp/terraform/commit/fb6b349e580b1cbb9053c09f97f8424d63d0716f --- website/docs/backends/types/s3.html.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/website/docs/backends/types/s3.html.md b/website/docs/backends/types/s3.html.md index 5868b10f9a..a050424ba8 100644 --- a/website/docs/backends/types/s3.html.md +++ b/website/docs/backends/types/s3.html.md @@ -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:///` instead of `https://.`). * `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.