-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathhowto.txt
More file actions
28 lines (18 loc) · 1.02 KB
/
howto.txt
File metadata and controls
28 lines (18 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//HOWTO provision this sample
1. Click the button :)
// HOWTO provision Azure functions via Azure CLI and ARM
// ATTENTION! If you are going to use CLI or Powershell, please change the storageAccountName in the template, because the name must be unique.
1. Login to Azure
azure login (& follow the instructions)
2. Create a new Resource Group
azure group create -n ResizingFunctionGroup -l "West Europe"
3. Deploy ARM to Resource Group
azure group deployment create -f arm_func.json -e arm_func.parameter.json -g ResizingFunctionGroup -n MyARMDeployment
// HOWTO provision Azure functions via Powershell and ARM
1. Login to Azure
Login-AzureRmAccount
Select-AzureRmSubscription -SubscriptionID "your-subscription-id"
2. Create a new Resource Group
New-AzureRmResourceGroup -Name ResizingFunctionGroup -Location "West Europe"
3. Deploy ARM to Resource Group
New-AzureRmResourceGroupDeployment -ResourceGroupName ResizingFunctionGroup -TemplateFile "azuredeploy.json" -TemplateParameterFile "parameters.json"