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!

lzap
asked 2 years ago1316 views
1 Answer
1
Accepted Answer

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
answered 2 years ago
  • Ooooh right how could I miss this! Thanks.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions