AWS S3 configuration documentation lists incorrect properties (#2027)

Fixes gh-2026
This commit is contained in:
hyness
2022-01-11 06:27:14 -08:00
committed by GitHub
parent 08973e65dc
commit a3789a2ef8

View File

@@ -877,7 +877,7 @@ You can enable this feature by adding a dependency to the link:https://docs.aws.
</dependencies>
----
The following configuration uses the AWS S3 client to access configuration files. We can use `spring.awss3.*` properties to select the bucket where your configuration is stored.
The following configuration uses the AWS S3 client to access configuration files. We can use `spring.cloud.config.server.awss3.*` properties to select the bucket where your configuration is stored.
[source,yaml]
----
@@ -892,7 +892,7 @@ spring:
bucket: bucket1
----
It is also possible to specify an AWS URL to link:https://aws.amazon.com/blogs/developer/using-new-regions-and-endpoints/[override the standard endpoint] of your S3 service with `spring.awss3.endpoint`. This allows support for beta regions of S3, and other S3 compatible storage APIs.
It is also possible to specify an AWS URL to link:https://aws.amazon.com/blogs/developer/using-new-regions-and-endpoints/[override the standard endpoint] of your S3 service with `spring.cloud.config.server.awss3.endpoint`. This allows support for beta regions of S3, and other S3 compatible storage APIs.
Credentials are found using the link:https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/credentials.html[Default AWS Credential Provider Chain]. Versioned and encrypted buckets are supported without further configuration.