mirror of https://github.com/pulumi/pulumi.git
7 lines
161 B
Python
7 lines
161 B
Python
|
import pulumi
|
||
|
|
||
|
pulumi.export("output_true", True)
|
||
|
pulumi.export("output_false", False)
|
||
|
pulumi.export("output_number", 4)
|
||
|
pulumi.export("output_string", "hello")
|