terraform

Setting Up Terraform

Intro Install Azure Setup Intro Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently. Learn more Basically, with Terraform you can define what you’d like like this: server { os = windows version = Windows_10 memory = 16 CPU = i7 } This allows you to manage your Infrastructure as code since now you can commit infra changes to a repository and have a CI/CD pipeline to build/test any infra changes, with approval flows.
Read more