mirror of https://github.com/pulumi/pulumi.git
18 lines
222 B
Puppet
18 lines
222 B
Puppet
|
output strVar {
|
||
|
__logicalName = "strVar"
|
||
|
value = "foo"
|
||
|
}
|
||
|
|
||
|
output arrVar {
|
||
|
__logicalName = "arrVar"
|
||
|
value = [
|
||
|
"fizz",
|
||
|
"buzz"
|
||
|
]
|
||
|
}
|
||
|
|
||
|
output readme {
|
||
|
__logicalName = "readme"
|
||
|
value = readFile("./Pulumi.README.md")
|
||
|
}
|