This message was deleted.
# general
s
This message was deleted.
1
g
To encrypt a configuration setting before runtime, you can use the CLI command
config set
command with a
--secret
flag. You can also set a secret during runtime. Any
Output<T>
value can be marked secret. If an output is a secret, any computed values derived from it—such as those derived through an
apply
call —will also be marked secret. All these encrypted values are stored in your state file.
https://www.pulumi.com/docs/intro/concepts/secrets/#secrets The docs are very thorough for Pulumi, stacks of information there. It just takes time to get used to navigating the Pulumi docs, but the
--secret
flag should be what you want.
🙏 1