Below you will find pages that utilize the taxonomy term “Iac”
Posts
Deploy to multiple Azure regions using Terraform Cloud
Problem Statement:
I have Terraform modules in a single repository that enable me to deploy a hub virtual network, firewall and VPN gateway. How can I deploy this code to multiple Azure regions using Terraform Cloud?
Answer:
There is more than one way to achieve this:
A Github repository dedicated to each region and a Terraform Cloud workspace for each region Publish the modules to terraform cloud private registry, reference those modules in a repository dedicated for each region and a terraform cloud workspace for each region Use a single repo for everything with different directories containing a root module for each environment and a terraform workspace for each region I’m sure there are other options as well as the above