victorious-exabyte-70545
06/27/2025, 9:46 PMerror: Missing required configuration variable 'mysnowflake:snowflake:private_key:secure'
please set a value using the command `pulumi config set --secret mysnowflake:snowflake:private_key:secure <value>`
error: an unhandled error occurred: program exited with non-zero exit code: 1
but this works from cli:
"pulumi config get snowflake:private_key"
So
pulumi_config = Config()
secret = pulumi_config.require_secret("snowflake:private_key"))
is adding " mysnowflake" to "snowflake:private_key"?victorious-exabyte-70545
06/27/2025, 9:57 PMencryptionsalt: *******
config:
snowflake:account: blahblah
snowflake:private_key:
secure: *****
without issue.echoing-dinner-19531
06/28/2025, 9:55 AMpulumi_config = Config("snowflake")
secret = pulumi_config.require_secret("private_key"))