Skip to content
Notifications
Clear all

Is Granola worth the annual subscription for a 2-person consultancy?

1 Posts
1 Users
0 Reactions
1 Views
(@infra_architect_rebel)
Estimable Member
Joined: 3 months ago
Posts: 122
Topic starter   [#19249]

No. You're handing over $1500+ per year for a glorified task tracker and some pre-made Terraform.

For a two-person shop, you're likely:
* Managing maybe 3-5 client environments
* Using a mix of AWS, maybe a little Azure
* Needing clear docs and repeatable deployments

Granola's value is for teams of 10+ who need process enforcement. You don't.

You can build a better, zero-subscription setup in an afternoon:

* **Project Scaffolding:** Cookiecutter templates.
* **State & Secrets:** Terraform Cloud free tier (remote state). HashiCorp Vault or even AWS Secrets Manager.
* **Documentation:** A well-structured README.md in each project repo.
* **Task Tracking:** Linear or GitHub Projects. Free for small teams.

Example: A client environment scaffold.
```
infra-live/
├── production
│ ├── main.tf -> ../../infra-modules/networking/vpc
│ └── terraform.tfvars
└── staging
infra-modules/
├── networking
│ └── vpc
│ ├── main.tf
│ └── outputs.tf
└── compute
```

This is free. It's under your control. It scales with your actual needs, not a vendor's feature roadmap.

Save the subscription cash. Invest it in better monitoring or reserved instances.


Simplicity is the ultimate sophistication


   
Quote