How to set a region with LoadDefaultConfig and shared profile

0

Hello,

I am starting with Go SDK AWS v2 and I cannot figure out how to select a pre-configured profile and select region programically. I want to do this:

cfg, err := config.LoadDefaultConfig(context.TODO(), config.WithSharedConfigProfile("saml"))

But also this at the same time and I struggle to understand how to combine these two together:

cfg, err := config.LoadDefaultConfig(context.TODO(), config.WithRegion("us-east-1"))

Thanks!

1回答
1
承認された回答

LoadDefaultConfig will accept any number of the LoadOptions (With...) functions as arguments. You should be able to do:

cfg, err := config.LoadDefaultConfig(context.TODO(), config.WithSharedConfigProfile("saml"), config.WithRegion("us-east-1"))

There's an example here: https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/config#example-package-Custom_config.

Ed
回答済み 2年前
  • Ooooh right how could I miss this! Thanks.

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

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

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

関連するコンテンツ