Skip to content

Commit

Permalink
Update Tofu s3 backend docs (#182)
Browse files Browse the repository at this point in the history
force_path_style is deprecated in favour of use_path_style in the OpenTofu s3 backend configuration
  • Loading branch information
m-bull authored Oct 28, 2024
1 parent e38b716 commit d204d61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/repository/opentofu.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,15 +182,15 @@ terraform_s3_skip_credentials_validation: "true"
# Tell OpenTofu to use path-style URLs, e.g. <host>/<bucket>, instead of
# subdomain-style URLs, e.g. <bucket>.<host>
terraform_s3_force_path_style: "true"
terraform_s3_use_path_style: "true"
terraform_backend_config:
endpoint: "{{ terraform_s3_endpoint }}"
region: "{{ terraform_s3_region }}"
bucket: "{{ terraform_s3_bucket }}"
key: "{{ terraform_s3_key }}"
skip_credentials_validation: "{{ terraform_s3_skip_credentials_validation }}"
force_path_style: "{{ terraform_s3_force_path_style }}"
use_path_style: "{{ terraform_s3_use_path_style }}"
skip_region_validation: "{{ terraform_s3_skip_region_validation }}"
```

Expand Down

0 comments on commit d204d61

Please sign in to comment.