mirror of https://github.com/pulumi/pulumi.git
42 lines
585 B
Puppet
42 lines
585 B
Puppet
# Keywords in various languages should be renamed and work.
|
|
class = "class_output_string"
|
|
export = "export_output_string"
|
|
import = "import_output_string"
|
|
mod = "mod_output_string"
|
|
object = { object = "object_output_string" }
|
|
self = "self_output_string"
|
|
this = "this_output_string"
|
|
if = "if_output_string"
|
|
|
|
output "class" {
|
|
value = class
|
|
}
|
|
|
|
output "export" {
|
|
value = export
|
|
}
|
|
|
|
output "import" {
|
|
value = import
|
|
}
|
|
|
|
output "mod" {
|
|
value = mod
|
|
}
|
|
|
|
output "object" {
|
|
value = object
|
|
}
|
|
|
|
output "self" {
|
|
value = self
|
|
}
|
|
|
|
output "this" {
|
|
value = this
|
|
}
|
|
|
|
output "if" {
|
|
value = if
|
|
}
|