Before you rewrite a Terraform project in Pulumi, you need an inventory of what has to change. The Terraform to Pulumiizer Map parses your pasted .tf and produces a clear table that maps every Terraform resource type you use to its Pulumi equivalent, including the Pulumi package you will need to import. It answers the question "what becomes what" before a single line of Pulumi is written, which is the first planning step of any migration and a good way to estimate its true scope. Teams that skip this step often discover late that a resource has no direct one to one Pulumi equivalent, so building the map up front avoids nasty surprises.
Like the converter, the mapper runs entirely in your browser using a real HCL parser, so your configuration never leaves the page. Each resource type appears once, even if you use it many times, so the table is a compact, deduped checklist rather than a noisy echo of your source. A built in map covers the popular AWS, Azure, Google and Kubernetes resources, with a best effort fallback that follows the provider dot class convention for anything unfamiliar. Use the table as the backbone of your migration ticket: paste the .tf, hand the map to the engineer doing the work, and let them tick types off as they translate them. The live stats panel confirms how many distinct types were discovered so you can size the effort, and the markdown output slots neatly into a planning document your reviewers can read without running any tool.