future-kite-91191
02/19/2020, 8:04 AMOutput<string>
var randomStringResult = string.Empty;
var randomString = new RandomPassword("random", new RandomPasswordArgs() { Length = 63 }).Result.Apply(v => randomStringResult = v);
I'm probably missing something obvious here?
I need to generate a random password and need access to the generated string resultbetter-rainbow-14549
02/19/2020, 9:24 AMtall-librarian-49374
02/19/2020, 10:36 AMup
is done with this resource. Any usage of the value has to stay within Apply
millions-journalist-34868
02/20/2020, 3:43 PMRandomPassword
, is there a way to keep the previous generated password ? When I use RandomPassword
, each time I do a pulumi up
a new password will be generated and my resources will all have to be updated even if nothing else has changed. I want to generate a password with radom instead of specifying one in my yaml stack file but I don't wan't it to change each time.better-rainbow-14549
02/20/2020, 3:44 PM