Infrastructure as Code (IaC) significa definir e gerenciar sua infraestrutura (servidores, redes, bancos de dados) através de código/arquivos de configuração em vez de configuração manual. Ferramentas como CloudFormation, Terraform e CDK tornam a infraestrutura repetível, versionada e automatizada.
O problema que IaC resolve
MANUALLY setting up infrastructure (clicking in the Console) is:
→ not REPEATABLE (hard to recreate identically; error-prone)
→ not VERSIONED (no history of what changed, by whom, why)
→ not DOCUMENTED (the setup lives only in someone's memory/clicks)
→ hard to review, share, or roll back
→ IaC defines infrastructure in CODE → solving all of this.
