Book Image

Infrastructure as Code for Beginners

By : Russ McKendrick
4 (1)
Book Image

Infrastructure as Code for Beginners

4 (1)
By: Russ McKendrick

Overview of this book

The Infrastructure as Code (IaC) approach ensures consistent and repeatable deployment of cloud-based IaaS/PaaS services, saving you time while delivering impeccable results. Infrastructure as Code for Beginners is a practical implementation guide that helps you gain a clear understanding of the foundations of Infrastructure as Code and make informed decisions when implementing it. With this book, you’ll uncover essential IaC concepts, including planning, selecting, and implementing the right tools for your project. With step-by-step explanations and real-world examples, you'll gain a solid understanding of the benefits of IaC and the scope of application in your projects. You'll learn about the pros, cons, and best practices of different IaC tools such as Terraform and Ansible, and their use at different stages of the deployment process along with GitHub Actions. Using these tools, you'll be able to design, deploy, and secure your infrastructure on two major cloud platforms, Microsoft Azure and Amazon Web Services. In addition, you'll explore other IaC tools such as Pulumi, AWS CloudFormation, and Azure Bicep. By the end of this book, you’ll be well equipped to approach your IaC projects confidently.
Table of Contents (15 chapters)
1
Part 1: The Foundations – An Introduction to Infrastructure as Code
5
Part 2: Getting Hands-On with the Deployment
9
Part 3: CI/CD and Best Practices

Summary

While we spent a lot of the initial part of the chapter discussing how Terraform works, once we got onto working through the GitHub Actions workflows, I am sure that you started to see the benefits of running our IaC from a centrally accessible location rather than your local machine.

Once we discussed Terraform’s requirements, we configured repository secrets and variables in GitHub. Then we worked through the various jobs and steps to make up the workflow that manages the storage account, where we stored the Terraform state and executed the Terraform deployment.

We then took everything we learned and covered in Terraform and applied it to Ansible before finally discussing a vital security point – be careful what access you give to your IaC GitHub actions!

There are some points we needed more time to cover, such as monitoring; for example, it is relatively straightforward to hook your GitHub Actions into messaging services such as Microsoft Teams or...