Feature description
We are trying to achieve Prefix-less lookup for SecretsManager.
i.e.:
aws:
distributed-configuration:
prefix: ""
search-active-environments: false
search-common-application: false
secretsmanager:
enabled: true
secrets:
- secret-name: ${some.secret.arn}
prefix: "app.secret"
But currently it's always setting the default prefix to application.name
. We want to completely disable this and be able to keep things very simple.
Is it possible?
Thank you