Missing support for s3
section, particularly s3.addressing_style
in SDK config parser
#1230
Open
1 of 2 tasks
Labels
Describe the feature
The AWS CLI S3 configuration supports passing
addressing_style = path
to enableforce_path_style
in theaws.profile
file.Contrary to
boto3
(and the AWS CLI), this crate ignores thes3
section the profile file.I'd like to request support for at least
s3.addressing_style
.Use Case
When using an AWS config or credentials file to configure the AWS SDK for an S3 provider that requires path-style S3 URLs, I have to manually set
force_path_style
to support path-style S3 URLs because the SDK doesn't parse thes3
section of the config file.That in turns requires to manually parse the config file again to check if
s3.addressing_style
is set topath
.It would be great if the rust crate would behave similar to
boto3
and the AWS CLI.Proposed Solution
This would require adjusting the parsed config object and default parsing logic:
Other Information
No response
Acknowledgements
A note for the community
Community Note
The text was updated successfully, but these errors were encountered: