pulumi/tests/testdata/codegen/transpiled_examples/cue-random-pp/nodejs/cue-random.ts

10 lines
268 B
TypeScript

import * as pulumi from "@pulumi/pulumi";
import * as random from "@pulumi/random";
const randomPassword = new random.RandomPassword("randomPassword", {
length: 16,
special: true,
overrideSpecial: "_%@",
});
export const password = randomPassword.result;