Quick Notes94 words
Defining an IaC strategy — quick notes
IaC strategy — quick notes
| Practice | Detail |
|---|---|
| Store | Templates and modules in source control, PR-reviewed |
| Test | Lint → validate → what-if → deploy to disposable env |
| Promote | One template, parameter file per environment |
| Deploy | Via pipeline only — never by hand |
| Preview | what-if shows changes before applying |
| Safety | Declarative = idempotent, safe to re-run |
Anti-pattern: a separate template per environment. They drift, and what you validated is not what you deploy.