You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug S3EncryptionConditional has a nested condition KmsKeyProperty which is conditional on property spring.cloud.aws.s3.encryption.keyId. According to property binding rules, keyId should be key-id. This is also reflected in the following section of the autogenerated spring-configuration-metadata.json:
which is the property name suggested by the IDE. Unfortunately this causes the condition not to match, leading to the creation of an S3Client without client-side encryption enabled. To match the condition, keyId must be used in the application.yaml instead of key-id.
Type: Bug
Component:
S3
Describe the bug
S3EncryptionConditional
has a nested conditionKmsKeyProperty
which is conditional on propertyspring.cloud.aws.s3.encryption.keyId
. According to property binding rules,keyId
should bekey-id
. This is also reflected in the following section of the autogeneratedspring-configuration-metadata.json
:which is the property name suggested by the IDE. Unfortunately this causes the condition not to match, leading to the creation of an S3Client without client-side encryption enabled. To match the condition,
keyId
must be used in the application.yaml instead ofkey-id
.Sample
The text was updated successfully, but these errors were encountered: