terraform
sceptre
| terraform | sceptre | |
|---|---|---|
| 594 | 6 | |
| 48,531 | 1,530 | |
| 0.5% | 0.2% | |
| 9.9 | 6.4 | |
| 5 days ago | 7 days ago | |
| Go | Python | |
| GNU General Public License v3.0 or later | GNU General Public License v3.0 or later |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
terraform
-
Release on Demand
When a change earns its way onto main, the train builds the container image one time and tags it by the commit SHA. That image is the artifact. It runs in dev immediately. And here's the part that makes promotion boring: shipping to prod doesn't rebuild anything. It re-points a config overlay (a Kustomize overlay, in practice, committed to the same repo) at the same SHA that's already running in dev. Same bytes, different environment. Promotion is a routing decision, not a build decision. The thing you tested in dev is the literal thing that runs in prod. Not a rebuild from the same commit and a hope. The same image. That cleanly splits two worlds that most setups jam into one giant deploy job. The slow-moving substrate (the cluster, the network, IAM, the shape of your manifests) changes on the order of a quarter and belongs to Terraform, ideally run through something like Terraform Cloud so applies are deliberate and auditable instead of run from someone's laptop. The fast-moving payload (image refs, rollouts, the things that change every commit) belongs to Git, reconciled continuously by a GitOps controller. Argo CD is the common one: it watches the repo, diffs the declared state against what's actually running in the cluster, and makes the cluster match. Change the overlay in Git, Argo CD notices and applies it. Flux does the same job if you prefer it. TF for the building, Git for the lights. The rule is simple: if it changes per release, Git owns it; if it changes per quarter, Terraform owns it. Match the tool to the rate of change and the six-hour deploy job that rewrites your infrastructure mid-flight just stops existing. One more piece falls out of this: tags are markers, not artifacts. The cluster never deploys a tag. The tag is a point-in-time anchor that says "this commit's state was live in prod," useful for audit, for rollback targeting, and for release notes. It records what shipped and when. Nothing reads it to decide what runs.
- Scarab Diagnostic Suite Field Test #006: Terraform Console Panic
-
Jenkins as a Code, or how I stopped clicking around in the UI
AWS EC2 / Azure VMs (Linux and Windows) — Dedicated job run terraform to provision and de-provision instances from packer templates.
-
Going Production on Cloud: Infrastructure Best Practices Every Engineer Should Know (Part 1)
Use an IaC tool like Terraform to define every resource declaratively, and a configuration management tool like Ansible for anything that runs on the instance itself.
-
War Story: Saving $200k/Year on AWS by Migrating 50% of Workloads to Graviton4 with Terraform 1.10
⭐ hashicorp/terraform — 48,279 stars, 10,324 forks
-
You deleted everything and AWS is still charging you?
Look, I don't know what else to tell 'ya, but in 2026 if you're getting "mysterious" charges from AWS after "deleting everything", you're simply not competent.
With a plethora of free billing tips from places like Duckbill https://www.duckbillhq.com/, to full-on repos like AWS-Nuke, https://github.com/ekristen/aws-nuke , down to AWS's own account monitoring and management services like Control Tower https://aws.amazon.com/controltower/, and Config https://aws.amazon.com/config/ , and full IAC ecosystems like Terraform https://developer.hashicorp.com/terraform or OpenTofu https://opentofu.org/ , you are not leveraging all the cost-management capabilities of the modern cloud.
-
Terraform 1.15 Alpha: Variable and Output Deprecation
Terraform has been iterating a lot more in the past few months introducing features or updates to the core binary which were always desired. Looking at the release notes of v1.15.0-alpha20260204 version , you see a few gems.
-
Agentic CLI Design: 7 Principles for Designing CLI as a Protocol for AI Agents
Having pre-execution options like in Terraform makes agent operations easier.
-
How I Built Graft: An Overlay Engine for Terraform Modules
There's a Terraform GitHub issue that's been open for years: people want to customize modules without forking them. Add a lifecycle block. Tweak a tag. Simple stuff.
-
PEClient.rb - The Puppet API Ruby Client Library
You’re integrating Puppet with other tooling (Terraform, CI/CD, internal platforms).
sceptre
-
Script or software that automatically populate specific profile in ~/.aws/credentials
See: * https://github.com/hashicorp/terraform-provider-aws/issues/10491 * https://github.com/Sceptre/sceptre/issues/674
-
Who's using AWS Proton?
our AWS SAs tried to sell us on it. but it seems worse than my current sceptre pipeline that I also run in CodePipeline 🤷♂️
-
New to AWS, looking for tips and maybe automation ideas
Cloud formation or AWS cdk. If you're leaning towards cloud formation check out some management tools like sceptre if you like the cdk idea you could also check out terraform.
-
Stackset organization from multiple yaml files
Also have a look at Cloudreach's Sceptre.
-
What is the best tool for managing CloudFormation stacks with CLI?
On the tool side you have sceptre: https://github.com/Sceptre/sceptre
-
Working in finance...
https://github.com/Sceptre/sceptre - here's a good example. Terra form knockoff written and managed by a consultancy. As part of their "services", they can code themselves into your organization for a small monthly consulting fee! Yay!
What are some alternatives?
Docker Compose - Define and run multi-container applications with Docker
maasta - MAAS Terraform Ansible
crossplane - The Cloud Native Control Plane
awesome-aws - A curated list of awesome Amazon Web Services (AWS) libraries, open source repos, guides, blogs, and other resources. Featuring the Fiery Meter of AWSome.
terragrunt - Terragrunt is a flexible orchestration tool that allows Infrastructure as Code written in OpenTofu/Terraform to scale.
cloud-custodian - Rules engine for cloud security, cost optimization, and governance, DSL in yaml for policies to query, filter, and take actions on resources