mirror of https://github.com/pulumi/pulumi.git
26 lines
278 B
Python
26 lines
278 B
Python
|
import pulumi
|
||
|
import pulumi_random as random
|
||
|
|
||
|
foo = random.RandomShuffle("foo", inputs=[
|
||
|
"""just one
|
||
|
newline""",
|
||
|
"""foo
|
||
|
bar
|
||
|
baz
|
||
|
qux
|
||
|
quux
|
||
|
qux""",
|
||
|
"""{
|
||
|
"a": 1,
|
||
|
"b": 2,
|
||
|
"c": [
|
||
|
"foo",
|
||
|
"bar",
|
||
|
"baz",
|
||
|
"qux",
|
||
|
"quux"
|
||
|
]
|
||
|
}
|
||
|
""",
|
||
|
])
|