This message was deleted.
# automation-api
s
This message was deleted.
c
I don't know if that's the only solution, but for CNAPPgoat what we do is propogate arguments through the context parameter as config values, works like a charm
so inside the Pulumi program you'd have something like
Copy code
ctx.GetConfig("aws:region")
and in the wrapper calling it
Copy code
if err := s.SetConfig(ctx, "aws:region", auto.ConfigValue{Value: options.AWSRegion}); err != nil {
b
I’ll try this, thanks @clean-zoo-67541