Skip to content

Latest commit

 

History

History
76 lines (52 loc) · 2.06 KB

README.md

File metadata and controls

76 lines (52 loc) · 2.06 KB

Create an Azure Resource Group

group/create/README.md

Prerequisites

This example assume you are logged into Azure CLI and have set your default subscription, if you have NOT done so please go to our top-level README

Create the Resource Group

To setup the environment variables needed to create the Resource Group execute the command lines below:

  export RESOURCE_GROUP=joazrg
  export REGION=pick_your_closest_region

To create the Resource Group use the following command line:

  az group create --name $RESOURCE_GROUP --location $REGION

Cleanup

Do NOT forget to remove the resources once you are done running the example.

Next steps

Reference documentation

Terraform snippets

If you want to use Terraform please see the snippets below:

1m