File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ Creates a function app.
51
51
New-AzFunctionApp -Name MyUniqueFunctionAppName `
52
52
-ResourceGroupName MyResourceGroupName `
53
53
-Location centralUS `
54
- -StorageAccount MyStorageAccountName `
54
+ -StorageAccountName MyStorageAccountName `
55
55
-Runtime PowerShell
56
56
```
57
57
@@ -62,7 +62,7 @@ This command creates a consumption PowerShell function app in Central US.
62
62
New-AzFunctionApp -Name MyUniqueFunctionAppName `
63
63
-ResourceGroupName MyResourceGroupName `
64
64
-PlanName MyPlanName `
65
- -StorageAccount MyStorageAccountName `
65
+ -StorageAccountName MyStorageAccountName `
66
66
-Runtime PowerShell
67
67
```
68
68
@@ -73,7 +73,7 @@ This command creates a PowerShell function app which will be hosted in a service
73
73
New-AzFunctionApp -Name MyUniqueFunctionAppName `
74
74
-ResourceGroupName MyResourceGroupName `
75
75
-PlanName MyPlanName `
76
- -StorageAccount MyStorageAccountName `
76
+ -StorageAccountName MyStorageAccountName `
77
77
-DockerImageName myacr.azurecr.io/myimage:tag
78
78
```
79
79
You can’t perform that action at this time.
0 commit comments