pulumi/tests/integration/construct_component_output_.../nodejs/index.ts

18 lines
341 B
TypeScript

// Copyright 2016-2021, Pulumi Corporation. All rights reserved.
import * as pulumi from "@pulumi/pulumi";
import { Component } from "./component";
new Component("component", {
foo: {
something: "hello",
},
bar: {
tags: {
"a": "world",
"b": pulumi.secret("shh"),
},
},
});