Infrastructure as Code (IaC) integrates with CI/CD to automate not just application deployment but also the provisioning and management of infrastructure — applying infrastructure changes through pipelines, just like code. This brings consistency, automation, and version control to infrastructure.
IaC a CI/CD folyamatban
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
