Skip to content

Commit

Permalink
Fix Az.Functions Syntax Errors (Azure#17616)
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptainFanZzz authored Apr 21, 2022
1 parent 87675df commit d6f463c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Functions/help/New-AzFunctionApp.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Creates a function app.
New-AzFunctionApp -Name MyUniqueFunctionAppName `
-ResourceGroupName MyResourceGroupName `
-Location centralUS `
-StorageAccount MyStorageAccountName `
-StorageAccountName MyStorageAccountName `
-Runtime PowerShell
```

Expand All @@ -62,7 +62,7 @@ This command creates a consumption PowerShell function app in Central US.
New-AzFunctionApp -Name MyUniqueFunctionAppName `
-ResourceGroupName MyResourceGroupName `
-PlanName MyPlanName `
-StorageAccount MyStorageAccountName `
-StorageAccountName MyStorageAccountName `
-Runtime PowerShell
```

Expand All @@ -73,7 +73,7 @@ This command creates a PowerShell function app which will be hosted in a service
New-AzFunctionApp -Name MyUniqueFunctionAppName `
-ResourceGroupName MyResourceGroupName `
-PlanName MyPlanName `
-StorageAccount MyStorageAccountName `
-StorageAccountName MyStorageAccountName `
-DockerImageName myacr.azurecr.io/myimage:tag
```

Expand Down

0 comments on commit d6f463c

Please sign in to comment.