pulumi/tests/testdata/codegen/output-name-conflict-pp/dotnet/output-name-conflict.cs

15 lines
308 B
C#

using System.Collections.Generic;
using System.Linq;
using Pulumi;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var cidrBlock = config.Get("cidrBlock") ?? "Test config variable";
return new Dictionary<string, object?>
{
["cidrBlock"] = cidrBlock,
};
});