How would I do pulumi config set "aws:skipMetada...
# python
f
How would I do pulumi config set "aws:skipMetadataApiCheck" false In Python?
e
In a pulumi program, you can't config is fixed for the duration of a program. With automation api there's a set_config method, see https://www.pulumi.com/docs/reference/pkg/python/pulumi/#automation-api-1 for an example
f
Thanks Fraser.