mirror of https://github.com/pulumi/pulumi.git
37 lines
473 B
C#
37 lines
473 B
C#
![]() |
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using Pulumi;
|
||
|
using Random = Pulumi.Random;
|
||
|
|
||
|
return await Deployment.RunAsync(() =>
|
||
|
{
|
||
|
var foo = new Random.RandomShuffle("foo", new()
|
||
|
{
|
||
|
Inputs = new[]
|
||
|
{
|
||
|
@"just one
|
||
|
newline",
|
||
|
@"foo
|
||
|
bar
|
||
|
baz
|
||
|
qux
|
||
|
quux
|
||
|
qux",
|
||
|
@"{
|
||
|
""a"": 1,
|
||
|
""b"": 2,
|
||
|
""c"": [
|
||
|
""foo"",
|
||
|
""bar"",
|
||
|
""baz"",
|
||
|
""qux"",
|
||
|
""quux""
|
||
|
]
|
||
|
}
|
||
|
",
|
||
|
},
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|