pulumi/tests/testdata/codegen/aws-secret-pp/dotnet/aws-secret.cs

15 lines
269 B
C#

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var dbCluster = new Aws.Rds.Cluster("dbCluster", new()
{
MasterPassword = Output.CreateSecret("foobar"),
});
});