Initial commit

This commit is contained in:
Bryce Lampe
2024-03-07 11:17:15 -08:00
committed by GitHub
commit 0d9ce7c53c
70 changed files with 4168 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Xyz = Pulumi.Xyz;
return await Deployment.RunAsync(() =>
{
var myRandomResource = new Xyz.Random("myRandomResource", new()
{
Length = 24,
});
return new Dictionary<string, object?>
{
["output"] =
{
{ "value", myRandomResource.Result },
},
};
});