pulumi/tests/integration/construct_component/dotnet/MyStack.cs
2020-10-06 10:19:22 -07:00

14 lines
404 B
C#

// Copyright 2016-2020, Pulumi Corporation. All rights reserved.
using Pulumi;
class MyStack : Stack
{
public MyStack()
{
var componentA = new Component("a", new ComponentArgs { Echo = 42 });
var componentB = new Component("b", new ComponentArgs { Echo = componentA.Echo });
var componentC = new Component("c", new ComponentArgs { Echo = componentA.ChildId });
}
}