This repository has been archived by the owner on Jan 19, 2022. It is now read-only.
Conditionally fetch default context secrets #797
Labels
component: secrets-manager
Secrets Manager integration related issue
status: waiting-for-triage
An issue we've not yet triaged
type: bug
A general bug
Type: Bug
Component: Secrets Manager
Describe the bug
So I'm making use of the
spring-cloud-starter-aws-secrets-manager-config
version2.3.2
, along with Spring Boot version2.5.5
, and I noticed that it allows importing individual secrets like:However, I also notice that the
fail-fast
has to be set tofalse
for it to work because it always tries to fetch:{defaultPrefix}/{defaultContext}
{defaultPrefix}/{defaultContext}{profile-separator}{profile}
{defaultPrefix}/{appName}
{defaultPrefix}/{appName}{profile-separator}{profile}
For the profile ones it goes for N number of active profiles. Is there really no way to stop looking up these defaults? Like I have specified the secrets it should fetch using
spring.config.import: aws-secretsmanager:my-secret
and because of this random fetching and subsequently failing I have to setfail-fast
tofalse
which defeats the purpose of itThe text was updated successfully, but these errors were encountered: