Below you will find pages that utilize the taxonomy term “Terraform-Cloud”
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
Posts
Using Snyk with Terraform Cloud Run Tasks
What is Snyk?
Find and automatically fix vulnerabilities in your code, open source dependencies, containers, and infrastructure as code — all powered by Snyk’s industry-leading security intelligence.
What are Terraform cloud Run Tasks?
Run Tasks allow you to directly integrate third-party tools and services at certain stages in the Terraform Cloud run lifecycle
I am using Synk to scan my terraform code during the plan phase to catch potential problems with my code.