This message was deleted.
# general
s
This message was deleted.
b
Hi Rotem, As with everything security related, layering is obviously important 🙂 Pulumi specifically, the secrets themselves are encrypted both in your stack configuration and throughout your state. You can check this by setting a secret `pulumi config set my-secret "correct-horse-battery-stable" --secret and then exporting your state
pulumi state export
You have some options for secret encryption, you can either use the Pulumi provider key (which is unique to your org/user) or you can use a secret provider like Amazon KMS, which of course then allows you to put key policies on those keys as well. There's more information here: https://www.pulumi.com/docs/intro/concepts/secrets/ Happy to answer any other questions though!