mirror of https://github.com/pulumi/pulumi.git
20 lines
334 B
Puppet
20 lines
334 B
Puppet
|
resource foo "random:index/randomShuffle:RandomShuffle" {
|
||
|
inputs = [
|
||
|
"just one\nnewline",
|
||
|
"foo\nbar\nbaz\nqux\nquux\nqux",
|
||
|
<<-EOT
|
||
|
{
|
||
|
"a": 1,
|
||
|
"b": 2,
|
||
|
"c": [
|
||
|
"foo",
|
||
|
"bar",
|
||
|
"baz",
|
||
|
"qux",
|
||
|
"quux"
|
||
|
]
|
||
|
}
|
||
|
EOT
|
||
|
]
|
||
|
}
|