pulumi/examples/compat/v0.10.0/minimal/index.ts
Pat Gavlin a23b10a9bf
Update the copyright end date to 2018. (#1068)
Just what it says on the tin.
2018-03-21 12:43:21 -07:00

9 lines
253 B
TypeScript

// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
import { Config } from "@pulumi/pulumi";
let config = new Config("minimal:config");
console.log(`Hello, ${config.require("name")}!`);
console.log(`Psst, ${config.require("secret")}`);