pulumi/pkg/codegen/internal/test/testdata/secret.pp.cs

15 lines
262 B
C#
Raw Normal View History

using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var dbCluster = new Aws.Rds.Cluster("dbCluster", new Aws.Rds.ClusterArgs
{
MasterPassword = Output.CreateSecret("foobar"),
});
}
}