mirror of https://github.com/pulumi/pulumi.git
8 lines
161 B
Python
8 lines
161 B
Python
![]() |
import pulumi
|
||
|
|
||
|
|
||
|
def not_implemented(msg):
|
||
|
raise NotImplementedError(msg)
|
||
|
|
||
|
pulumi.export("result", not_implemented("expression here is not implemented yet"))
|