We can create a stack from a template in CLI with ...
# general
s
We can create a stack from a template in CLI with some thing like
Copy code
pulumi new <https://github.com/pulumi/aws-python>
How do we do the same using Python SDK
Copy code
from pulumi import automation as auto

# how do we pass the git url of template here ???
auto.create_or_select_stack()