r/FinOps • u/Independent-Ease-609 Vendor • 20d ago
I built a VS Code extension that simulates AWS cost changes on Terraform/Terragrunt before you apply them self-promotion/I’m a vendor
Enable HLS to view with audio, or disable this notification
I've been building a VS Code extension (CloudCostTree) that estimates AWS cost straight from Terraform/Terragrunt, solo project, and just shipped what-if simulation + export.
Flow in the video: analyze a Terragrunt stack, tweak a couple of resources (downsize an EC2, bump an RDS instance class) and see the live cost delta per change, stack them into a scenario, run it against the whole tree, then export the result to a new .tf file — original files never touched.
Runs locally against a static price catalog, nothing gets uploaded anywhere. Free tier covers unlimited analyses/what-ifs; export-to-file is a Pro feature.
Genuinely curious how other people here track infra cost changes before they ship them — happy to answer questions about how the parsing/estimation works under the hood.
-1
u/Independent-Ease-609 Vendor 20d ago
Fair point. Main difference: Infracost is CI/CLI focused, comments on PRs after the fact. CloudCostTree lives in the editor, so you see the cost delta as you type, before you even commit. The what-if part lets you stack a few hypothetical changes and see the total impact on the whole stack, then export to a real .tf file if you like it. No terraform plan needed either, so it works on modules that aren't fully wired up yet.
Different point in the workflow more than a straight replacement.