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
preguntada hace 2 años1320 visualizaciones
1 Respuesta
1
Respuesta aceptada

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
respondido hace 2 años
  • Ooooh right how could I miss this! Thanks.

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas