mirror of https://github.com/pulumi/pulumi.git
11 lines
293 B
TypeScript
11 lines
293 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
|
|
import { R } from "./res";
|
|
|
|
export const withoutSecret = new R("withoutSecret", {
|
|
prefix: pulumi.output("it's a secret to everybody")
|
|
});
|
|
|
|
export const withSecret = new R("withSecret", {
|
|
prefix: pulumi.secret("it's a secret to everybody")
|
|
});
|