Infrastructure as Code (IaC) CI/CD-এর সাথে একীভূত হয়ে শুধুমাত্র অ্যাপ্লিকেশন deployment নয় বরং অবকাঠামোর provisioning এবং ব্যবস্থাপনাও স্বয়ংক্রিয় করে — পাইপলাইনের মাধ্যমে অবকাঠামোর পরিবর্তন প্রয়োগ করে, ঠিক কোডের মতো। এটি অবকাঠামোতে সামঞ্জস্য, স্বয়ংক্রিয়তা এবং সংস্করণ নিয়ন্ত্রণ আনে।
CI/CD পাইপলাইনে 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
