Skip to content

Prerequisites

Install tools

Create resource group in Azure

Using the Azure CLI, create a resource group in Azure to contain the resources created during this tutorial:

  1. Login to Azure:

    az login
    
  2. Set active subscription:

    az account set -s <SUBSCRIPTION_NAME_OR_ID>
    
  3. Create a resource group:

    $ az group create -n example-rg -l eastus -o table
    Location     Name
    -----------  ----------
    eastus       example-rg
    
  4. Clone the repository:

    $ git clone 
    

Now we're ready to start learning about Terraform, starting with the basic syntax.