busy-umbrella-36067
10/25/2018, 7:09 PMbig-piano-35669
@pulumi/random
provider, which will generate a random string in a way that works well with the Pulumi model (i.e., only the first time the stack is created, not every time).import * as random from "@pulumi/random";
export const randomChars =
new random.RandomString(
"randomChars", { length: 64 }).result;
busy-umbrella-36067
10/26/2018, 1:38 PM