I use AWS Secrets Manager to store passwords which I need to read from services launched in my EC2 instances.
In order to do that one solution that I thought about where creating a role which can access to Secrets Manager and attach it to instances I want to read secrets from. However, when I try to create the role I cannot find the Secrets Manager service.
Another solution could be storing both the access key and the secret key of an user who can access to that service in the EC2 instances but I don't like that solution because I would prefer not storing that kind of keys in the instances.
Any ideas to create the role I talk about or any other solution?
Thank you very much