mirror of https://github.com/pulumi/pulumi.git
15 lines
208 B
Puppet
15 lines
208 B
Puppet
|
output "output_true" "bool" {
|
||
|
value = true
|
||
|
}
|
||
|
|
||
|
output "output_false" "bool" {
|
||
|
value = false
|
||
|
}
|
||
|
|
||
|
output "output_number" "number" {
|
||
|
value = 4
|
||
|
}
|
||
|
|
||
|
output "output_string" "string" {
|
||
|
value = "hello"
|
||
|
}
|