sparse-intern-71089
01/11/2022, 6:15 PMbillowy-army-68599
pulumi config set foo bar --secret
for it to be marked as secretbillowy-army-68599
isSecret
to determine if it's a secret: https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/pulumi/#isSecretbusy-branch-95201
01/11/2022, 6:24 PMbillowy-army-68599
billowy-army-68599
busy-branch-95201
01/11/2022, 6:28 PMbusy-branch-95201
01/11/2022, 6:32 PMAttributeError: 'str' object has no attribute 'is_secret'
.busy-branch-95201
01/11/2022, 6:49 PMprehistoric-activity-61023
01/12/2022, 8:52 AMconfig
and secrets
explicitly and differentiate based on that:
So instead of:
config:
proj:data:
my_values:
plain_value: foo
secure_value:
secure: AAABAB+T(...)sEmx8=
you can have:
config:
proj:data:
my_values:
config:
plain_value: foo
secrets:
secure_value:
secure: AAABAB+T(...)sEmx8=