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
Copy file name to clipboardExpand all lines: articles/azure-functions/how-to-create-function-azure-cli.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ Before you begin, you must have the following:
27
27
28
28
In Azure Functions, a function project is a container for one or more individual functions that each responds to a specific trigger. All functions in a project share the same local and hosting configurations. In this section, you create a function project that contains a single function.
29
29
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-typescript,programming-language-powershell,programming-language-python"
30
-
1. In a terminal or command prompt, run the following command for your chosen language to create a function app project in the current folder:
30
+
1. In a terminal or command prompt, run this [`func init`](./functions-core-tools-reference.md#func-init) command to create a function app project in the current folder:
31
31
::: zone-end
32
32
::: zone pivot="programming-language-csharp"
33
33
```console
@@ -157,7 +157,7 @@ In Azure Functions, a function project is a container for one or more individual
157
157
</pre>
158
158
159
159
>[!NOTE]
160
-
> If HttpExample doesn't appear as shown above, you likely started the host from outside the root folder of the project. In that case, use **Ctrl**+**C** to stop the host, navigate to the project's root folder, and run the previous command again.
160
+
> If the HttpExample endpoint doesn't appear as expected, you likely started the host from outside the root folder of the project. In that case, use **Ctrl**+**C** to stop the host, navigate to the project's root folder, and run the previous command again.
161
161
162
162
1. Copy the URL of your `HttpExample`functionfrom this output to a browser and browse to the functionURL and you should receive success response with a "hello world" message.
163
163
@@ -179,7 +179,7 @@ To enable the Functions host to connect to the default storage account using sha
At this point, the Functions host is able to connect to the storage account securely using managed identities. You can now deploy your project code to the Azure resources
182
+
At this point, the Functions host is able to connect to the storage account securely using managed identities. You can now deploy your project code to the Azure resources.
Copy file name to clipboardExpand all lines: includes/functions-create-azure-resources-flex-cli.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Use the following commands to create these items. Both Azure CLI and PowerShell
26
26
az login
27
27
```
28
28
29
-
The [az login](/cli/azure/reference-index#az-login) command signs you into your Azure account.
29
+
The [`az login`](/cli/azure/reference-index#az-login) command signs you into your Azure account.
30
30
<!---
31
31
### [Azure PowerShell](#tab/azure-powershell)
32
32
```azurepowershell
@@ -80,7 +80,7 @@ Use the following commands to create these items. Both Azure CLI and PowerShell
80
80
---
81
81
-->
82
82
83
-
In this example, replace `<STORAGE_NAME>` with a name that is appropriate to you and unique in Azure Storage. Names must contain three to 24 characters numbers and lowercase letters only. `Standard_LRS` specifies a general-purpose account, which is [supported by Functions](../articles/azure-functions/storage-considerations.md#storage-account-requirements). This new account can only be accessed by using Micrososft Entra-authenticated identities that have been granted permissions to specific resources.
83
+
In this example, replace `<STORAGE_NAME>` with a name that is appropriate to you and unique in Azure Storage. Names must contain three to 24 characters numbers and lowercase letters only. `Standard_LRS` specifies a general-purpose account, which is [supported by Functions](../articles/azure-functions/storage-considerations.md#storage-account-requirements). This new account can only be accessed by using Microsoft Entra-authenticated identities that have been granted permissions to specific resources.
84
84
85
85
1. Create a user-assigned managed identity, then capture and parse the returned JSON properties of the object using `jq`:
86
86
@@ -144,7 +144,7 @@ Use the following commands to create these items. Both Azure CLI and PowerShell
144
144
145
145
---
146
146
-->
147
-
In this example, replace these placholders:
147
+
In this example, replace these placeholders:
148
148
149
149
+ `<STORAGE_NAME>`: the name of the account you used in the previous step.
+ If you use another [supported version of Java](../articles/azure-functions/supported-languages.md?pivots=programming-language-java#languages-by-runtime-version), you must update the project's pom.xml file.
10
-
+ The `JAVA_HOME` environment variable must be set to the install location of the correct version of the JDK.
10
+
+ The `JAVA_HOME` environment variable must be set to the install location of the correct version of the Java Development Kit (JDK).
11
11
+[Apache Maven 3.8.x](https://maven.apache.org)
12
12
::: zone-end
13
13
::: zone pivot="programming-language-javascript,programming-language-typescript"
0 commit comments