pulumi/pkg/codegen/testing/test/testdata/aws-secret-pp/dotnet/aws-secret.cs

15 lines
262 B
C#

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"),
});
}
}