Skip to content

Files

Latest commit

9a1d679 · Oct 25, 2018

History

History
18 lines (15 loc) · 842 Bytes

functions-create-resource-group.md

File metadata and controls

18 lines (15 loc) · 842 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. 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 are not 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. To see all supported locations for App Service plans, run the az appservice list-locations command.