mirror of https://github.com/pulumi/pulumi.git
16 lines
305 B
C#
16 lines
305 B
C#
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using Pulumi;
|
||
|
|
||
|
return await Deployment.RunAsync(() =>
|
||
|
{
|
||
|
return new Dictionary<string, object?>
|
||
|
{
|
||
|
["output_true"] = true,
|
||
|
["output_false"] = false,
|
||
|
["output_number"] = 4,
|
||
|
["output_string"] = "hello",
|
||
|
};
|
||
|
});
|
||
|
|