I am trying to use python to get a secret from my ...
# python
v
I am trying to use python to get a secret from my stack config that is
Copy code
encryptionsalt: *******
config:
  snowflake:account: blahblah
  snowflake:private_key:
    secure: *****
But this is not working
Copy code
from pulumi import Config, ResourceOptions
pulumi_config = Config()
secret = pulumi_config.get_config("snowflake:private_key"))
What am I doing wrong?