Hi, I want to migrate from Terraform to Pulumi, ma...
# general
g
Hi, I want to migrate from Terraform to Pulumi, mainly using the Automation API. I saw that Pulumi can use local Terraform modules. Can I use a local Terraform module within the Automation API? Are there any examples?
m
The Automation API is just a different way to run Pulumi, it calls the CLI under the hood (e.g., see the Python SDK). As far as I'm aware, there are no limitations. So if you have a Pulumi program that includes local Terraform modules that you can run via the Pulumi CLI, you can also run it using the Automation API.
👏 1