Infrastructure as Code (IaC) integreert met CI/CD om niet alleen de applicatiedeployment te automatiseren, maar ook de inrichting en beheer van infrastructuur — het toepassen van infrastructuurwijzigingen via pipelines, net als code. Dit brengt consistentie, automatisering en versiebeheer naar infrastructuur.
IaC in de CI/CD-pipeline
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
