Hi was anyone able to run pulumi with python debug...
# python
g
Hi was anyone able to run pulumi with python debugger? when I run
python __main__.py
I get an error
Program run without the Pulumi engine available
. I found this issue https://github.com/pulumi/pulumi/issues/1372#issuecomment-583086422 I tried what @white-balloon-205 suggested but I could not find the process. Here is the code I tried from: https://www.pulumi.com/docs/intro/concepts/config/#structured-configuration
Copy code
import pulumi

config = pulumi.Config()
data = config.require_object("data")
print("Active:", data.get("active"))
For some reason I do not even get the output of
print
when I run
pulumi up
Any clues?