Infrastructure as Code (IaC) என்பது CI/CD உடன் ஒருங்கிணைந்து, பயன்பாட்டு deployment மட்டுமல்லாமல் infrastructure provisioning மற்றும் management ஐயும் தானியக்கமாக்குகிறது — pipelines மூலம் infrastructure மாற்றங்களைப் பயன்படுத்துகிறது, குறியீட்டின் போலவே. இது infrastructure க்கு consistency, automation, மற்றும் version control ஐ கொண்டுவருகிறது.
CI/CD pipeline இல் IaC
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
