mirror of https://github.com/pulumi/pulumi.git
15 lines
308 B
C#
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,
|
||
|
};
|
||
|
});
|
||
|
|