pulumi/tests/integration/construct_component_plain/dotnet/MyStack.cs
Justin Van Patten f7cc19f89d
[sdk/nodejs] Keep prompt values prompt in construct (#6522)
In order to support prompt values in multi-lang components, if an input value is prompt, keep it as-is instead of wrapping it in an Output.
2021-04-09 14:36:22 -07:00

12 lines
213 B
C#

// Copyright 2016-2021, Pulumi Corporation. All rights reserved.
using Pulumi;
class MyStack : Stack
{
public MyStack()
{
new Component("component", new ComponentArgs { Children = 5 });
}
}