101 - Location

43.623709456363095, -70.2077965683726

Read the Docs

If you want to get a better idea about the object that we will be working with in this module, you can review the docs here:

Objectives

The purpose of this short module is to introduce the concepts of "region" and "folder". We will describe how to select a deployment region and how to create a resource group to house all the created resources.

Location Terminology

Region (region)

A geographical location, comprising n number of availability zones, depending on the region.

Resource Group (folder)

A resource group is a logical grouping of resources. A resource group can only be part of one region, but a Region can have n number of resource groups. Resource groups are not default in AWS.

Key Location Concepts

Region Schema

With Tuono IaC we will select each region for both AWS and Azure to be a west coast region. us-west-2 is the AWS region and is located in US West (Oregon). For Azure westus2 is located in Washington. This region will be referenced as hands-on-lab-region.

  region:
    hands-on-lab-region:
      aws: us-west-2
      azure: westus2

Folder Schema

We define the folder name as the variable resource_group.

  folder:
    (( resource_group )):
      region: hands-on-lab-region

Last updated

Was this helpful?