If i wanted to generate a random password, store i...
# general
b
If i wanted to generate a random password, store it in an azure keyvault and then refer to it... how would i do that? Would it not re-generate the password each
pulumi up
? How would I stop it from continuously replacing it?
w
There’s a
@pulumi/random
package designed for exactly this scenario. For example: https://pulumi.io/reference/pkg/nodejs/@pulumi/random/index.html#RandomString
b
ah fantastic thanks