Infrastructure as Code (IaC) znamená definování a správu vaší infrastruktury (servery, sítě, databáze) prostřednictvím kódu/konfiguračních souborů namísto ručního nastavení. Nástroje jako CloudFormation, Terraform a CDK činí infrastrukturu opakovatelnou, verzovanou a automatizovanou.
Problém, který IaC řeší
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.
