Infrastructure as Code (IaC) — altyapı otomasyonu, sadece uygulama dağıtımını değil, aynı zamanda altyapının sağlanması ve yönetimini de otomatikleştirerek CI/CD'ye entegre olur — altyapı değişiklikleri, kod gibi pipeline'lar aracılığıyla uygulanır. Bu, altyapıya tutarlılık, otomasyon ve sürüm kontrolü getirir.
IaC'nin CI/CD pipeline'ında yeri
Infrastructure (servers, networks, databases) defined as CODE (Terraform, CloudFormation,
etc.) and managed THROUGH CI/CD pipelines:
→ infrastructure changes go through the SAME workflow as app code (PR → review → apply)
→ the pipeline runs the IaC tool to provision/update infrastructure automatically
→ infrastructure is version-controlled, reviewed, and applied consistently
