github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/aws-secret-pp/dotnet/aws-secret.cs (about) 1 using System.Collections.Generic; 2 using Pulumi; 3 using Aws = Pulumi.Aws; 4 5 return await Deployment.RunAsync(() => 6 { 7 var dbCluster = new Aws.Rds.Cluster("dbCluster", new() 8 { 9 MasterPassword = Output.CreateSecret("foobar"), 10 }); 11 12 }); 13