Skip to content

Files

Latest commit

2d54a5c · Nov 30, 2017

History

History
11 lines (8 loc) · 731 Bytes

functions-create-resource-group.md

File metadata and controls

11 lines (8 loc) · 731 Bytes

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.