mirror of https://github.com/pulumi/pulumi.git
11 lines
310 B
TypeScript
11 lines
310 B
TypeScript
// Copyright 2016-2024, Pulumi Corporation. All rights reserved.
|
|
|
|
import * as pulumi from "@pulumi/pulumi";
|
|
import * as pkg from "@pulumi/pkg";
|
|
|
|
export const res1 = new pkg.Random("res1", { length: 5 });
|
|
|
|
export const res2 = pkg.doEcho({echo: "hello"});
|
|
|
|
export const res3 = pkg.doEchoOutput({echo: "hello"})
|