hi team, does <this> mean we no longer need to cre...
# general
b
hi team, does this mean we no longer need to create a equivalent Pulumi provider for a existing Terraform provider? if so, that'd great! we still use Terraform to manage resources due to missing Pulumi providers but this will be a game changer.
m
Yes, there are actually two features here: You can use any Terraform provider by automatically generating a Pulumi SDK via
pulumi package add terraform-provider your/provider
(docs) and as described in the blog post you can also use Terraform modules directly via
pulumi package add terraform-module your/tf/module
.
b
thanks for clarifying. unfortunately, the terraform provider i want to use depends on a legacy Terraform plugin, which prevents the provider conversations. but it is not a module, which means i won't be able to use this new feature neither