Does SecretsManager support global endpoint, so single SecretsManagerClient can be used to access secrets across AWS regions.

0

AFIAK SecretsManagerClient can be configured with ONLY single AWS region. Is it possible to use same SecretsManagerClient client to access secrets across AWS regions.

EX: would like to use same SecretsManagerClient client to get secret from arn:aws:secretsmanager:us-east-1:xxxx:xxxxx and arn:aws:secretsmanager:us-west-2:xxxxxx:xxxxx.

已提问 9 个月前315 查看次数
2 回答
3
已接受的回答

I have to agree with you.. Reading the SDK, it seems the GetSecretValue only supports the current region where the call is made from. As with the CLi, you have to specify the region even if the full ARN is supplied.

I believe you would need to connect to the endpoint in the region where the secret is located.

This is very similar to how the console works when you switch regions.

profile picture
专家
已回答 9 个月前
profile picture
专家
已审核 9 个月前
  • Even with replicated secrets, we need to create corresponding region SecretsManagerClient to access the secret. This is no global SecretsManagerClient. That would have been a useful feature. Any idea if such a feature is in development ?

  • Yeah that seems to be how it is. Most services are regional apart from say IAM which is global. I cant comment if its in feature development, I dont work for AWS or have the ability to find this out im afraid.

0

Hi,

the best practice is rather to replicate your secret to all relevant regions as per: https://docs.aws.amazon.com/secretsmanager/latest/userguide/create-manage-multi-region-secrets.html

If you later need to, you can promote a replica secret to a standalone and then set it up for replication independently.

It is better than switching endpoint to another region if you need to ensure regional data locality for your compliance.

Best,

Didier

profile pictureAWS
专家
已回答 9 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则