Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 760 Bytes

functions-create-resource-group.md

File metadata and controls

19 lines (15 loc) · 760 Bytes
author ms.service ms.topic ms.date ms.author
ggailey777
azure-functions
include
09/04/2018
glenga

Create a resource group

Create a resource group with the az group create command. An Azure resource group is a logical container into which Azure resources like function apps, databases, and storage accounts are deployed and managed.

The following example creates a resource group named myResourceGroup.
If you aren't using Cloud Shell, sign in first using az login.

az group create --name myResourceGroup --location westeurope

You generally create your resource group and the resources in a region near you.