You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -119,9 +119,10 @@ In Azure Functions, your code project is an app that contains one or more indivi
119
119
cd fabrikam-functions
120
120
```
121
121
122
+
You can review the template-generated code for your new HTTP trigger function in _Function.java_ in the _\src\main\java\com\fabrikam_ project directory.
122
123
::: zone-end
123
124
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-typescript,programming-language-powershell,programming-language-python"
124
-
2. Use this `func new` command to add a function to your project:
125
+
2. Use this [`func new`](./functions-core-tools-reference.md#func-new) command to add a function to your project:
125
126
126
127
```console
127
128
func new --name HttpExample --template "HTTP trigger" --authlevel "anonymous"
@@ -186,7 +187,7 @@ Verify your new function by running the project locally and calling the function
186
187
187
188
## Update application settings
188
189
189
-
To enable the Functions host to connect to the default storage account using shared secrets, you must replace the `AzureWebJobsStorage` connection string setting with a complex setting, prefixed with `AzureWebJobsStorage`, that uses the user-assigned managed identity to connect to the storage account.
190
+
To enable the Functions host to connect to the default storage account using shared secrets, you must replace the `AzureWebJobsStorage` connection string setting with several settings that are prefixed with `AzureWebJobsStorage__`. These settings define a complex setting that your app uses to connect to storage and Application Insights with a user-assigned managed identity.
190
191
191
192
1. Use this script to get the client ID of the user-assigned managed identity and uses it to define managed identity connections to both storage and Application Insights:
192
193
@@ -220,10 +221,9 @@ Because your function uses an HTTP trigger and supports GET requests, you invoke
220
221
221
222
Copy the complete **Invoke URL** shown in the output of the publish command into a browser address bar. When you navigate to this URL, the browser should display similar output as when you ran the function locally.
222
223
223
-
---
224
-
224
+
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-typescript,programming-language-powershell,programming-language-java"
0 commit comments