I'm trying to retrieve parameters stored in AWS Secrets Manager to inject them into bean using @Value annotation.
For example, when parameters are described in application.yml I can just type @Value("${path.to.parameter}") to inject them.
Found similar workaround called "Distributed Configuration" for AWS Parameter Store in Micronaut documentation.
Is there any way to implement Distributed Configuration with AWS Secrets Manager?