Simultaneously Deploying Infrastructure across the Globe
In this demo, I show how to deploy a single code-base across all available AWS Regions using HashiCorp Terraform Cloud and the AWS and AWSCC Providers for Terraform.
Terraform Concepts CODE EDITOR # get list of all opted-in AWS Regions data "aws_regions" "available" { all_regions = true filter { name = "opt-in-status" values = ["opted-in"] } }