Skip to content

Commit 80ff697

Browse files
committed
(ACES Core) update functions-create-container-registry.md
Remove `--authlevel anonymous` argument from `func new` command as auth_level is not correctly set in the template. Allow user to select from CLI dropdown list fixes MicrosoftDocs/azure-docs#122596
1 parent 090cd3c commit 80ff697

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

includes/functions-create-container-registry.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,15 +153,15 @@ cd fabrikam-functions
153153
Use the following command to add a function to your project, where the `--name` argument is the unique name of your function and the `--template` argument specifies the function's trigger. `func new` creates a C# code file in your project.
154154

155155
```console
156-
func new --name HttpExample --template "HTTP trigger" --authlevel anonymous
156+
func new --name HttpExample --template "HTTP trigger"
157157
```
158158
::: zone-end
159159
<!---add back programming-language-other-->
160160
::: zone pivot="programming-language-javascript,programming-language-typescript,programming-language-powershell,programming-language-python"
161161
Use the following command to add a function to your project, where the `--name` argument is the unique name of your function and the `--template` argument specifies the function's trigger. `func new` creates a subfolder matching the function name that contains a configuration file named *function.json*.
162162

163163
```console
164-
func new --name HttpExample --template "HTTP trigger" --authlevel anonymous
164+
func new --name HttpExample --template "HTTP trigger"
165165
```
166166
::: zone-end
167167
<!---

0 commit comments

Comments
 (0)