mirror of https://github.com/pulumi/pulumi.git
26 lines
319 B
TypeScript
26 lines
319 B
TypeScript
|
import * as pulumi from "@pulumi/pulumi";
|
||
|
import * as random from "@pulumi/random";
|
||
|
|
||
|
const foo = new random.RandomShuffle("foo", {inputs: [
|
||
|
`just one
|
||
|
newline`,
|
||
|
`foo
|
||
|
bar
|
||
|
baz
|
||
|
qux
|
||
|
quux
|
||
|
qux`,
|
||
|
`{
|
||
|
"a": 1,
|
||
|
"b": 2,
|
||
|
"c": [
|
||
|
"foo",
|
||
|
"bar",
|
||
|
"baz",
|
||
|
"qux",
|
||
|
"quux"
|
||
|
]
|
||
|
}
|
||
|
`,
|
||
|
]});
|