github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/transpiled_examples/cue-random-pp/nodejs/cue-random.ts (about)

     1  import * as pulumi from "@pulumi/pulumi";
     2  import * as random from "@pulumi/random";
     3  
     4  const randomPassword = new random.RandomPassword("randomPassword", {
     5      length: 16,
     6      special: true,
     7      overrideSpecial: `_%@`,
     8  });
     9  export const password = randomPassword.result;