This message was deleted.
# general
s
This message was deleted.
w
We recently added a
@pulumi.random
package. You can use it to create random values that are persisted in the checkpoint and so only created once per stack (unless you force them to be recreated by changing the inputs):
Copy code
import * as random from "@pulumi/random";

const token = new random.RandomString("password", {
    length: 10,
    lower: true,
    upper: false,
    special: false,
});

export let tokenString = token.result;
https://github.com/pulumi/pulumi-random
t
I’ll have to take a gander, thanks!