DevOps is a journey not a destination. Implementing Infrastructure-as-Code is one of the first steps you will take on your DevOps journey!
When implementing an application environment in the cloud, it is important to have a repeatable way to deploy the underlying infrastructure components as well as your software into the target environment. This includes resources such as:
- Virtual Networks, Network Security Groups (Firewalls), Public IPs, Virtual Machines, Storage (Disks)
- PaaS Services (Azure SQL, App Service, etc)
- Configuration Management (installing & configuring software on VMs)
The best way to make deployments repeatable is to define them with code, hence the term "Infrastructure as Code" (aka IAC). There are multiple technologies that enable you to define your IaC. Some of these include:
- Azure Resource Manager (ARM) Templates
- PowerShell Desired State Configuration (DSC)
- HashiCorp's Terraform & Packer
- Ansible, Chef, Puppet, Salt Stack, and others
Terraform is a tool (templating language) for building, changing, and versioning infrastructure safely and efficiently. Using Terraform, you can automate the tasks of building, changing and de-provisioning the infrastructure
This hack is focused on using Terraform to implement your IaC. It does not mean this is the only way to implement IaC. It is just one way amongst many. If you want to learn how to do IaC in Azure with other technologies, try one of our other IaC hacks for ARM Templates or Ansible.
This hack will help you learn:
- How Terraform works to deploy infrastructure in Azure
- How Terraform can be used to trigger the install of software on a VM
- Get your machine ready
- Configure Terraform on Linux subsystem, credentials
- "Hello World" Terraform
- Create an Azure resource group using Terraform
- Deploy a Virtual Network
- Learn how to find Terraform HCL syntax to deploy an Azure resource
- Open Some Ports
- Learn about variables, dependencies, idempotency
- Create a Linux Virtual Machine
- Learn what an Azure Virtual Machine is composed of
- Use Packer to Create a Linux image with NGINX installed
- Learn about custom build images with Packer
- Your own Azure subscription with Owner access
- Visual Studio Code
- Azure CLI
- Terraform
../Coach/Solutions
- Complete solution files for each challenge
../Student
- Terraform challenges
- Pete Rodriguez