https://pulumi.com logo
#python
Title
# python
f

full-window-21515

07/28/2022, 9:48 PM
How would I do pulumi config set "aws:skipMetadataApiCheck" false In Python?
e

echoing-dinner-19531

07/29/2022, 1:26 PM
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

full-window-21515

07/30/2022, 1:09 PM
Thanks Fraser.