Is it possible to store a secret in the `pulumi.Co...
# python
s
Is it possible to store a secret in the
pulumi.Config
from inside my program? I want to generate a random string if a secret doesn't exist and store it so it can be retrieved via
pulumi.Config.get_secret
later.
h
pulumi.Config
doesn't have a writable interface
now, i've done enough code splunking to know you could hack it, but that comes with risks
s
that's a bummer. thanks for the confirmation