Is there a way to use `config.require_secret` on a...
# python
c
Is there a way to use
config.require_secret
on a structured object? i.e. if I use
pulumi config set --secret --path things.thing1.token secret_value
is there a way to do
config.require_secret('things.thing1.token')
? When I do that a “Missing required configuration variable” error. My searches in the docs and in code on github have come up with nothing. Figured I’d ask before diving into SDK source code.
l
I simply do a get_object without require_secret
c
And that decrypts the secrets as well? Interesting.