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.

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ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ