Skip to content

Commit 8098c6b

Browse files
authored
Merge pull request #208577 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 25af885 + 632943c commit 8098c6b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

articles/azure-resource-manager/bicep/linter-rule-outputs-should-not-contain-secrets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The following example shows a secure pattern for retrieving a storageAccount key
5858
output storageId string = stg.id
5959
```
6060

61-
Which can be used in a subsequent deployment as sown in the following example
61+
Which can be used in a subsequent deployment as shown in the following example
6262

6363
```bicep
6464
someProperty: listKeys(myStorageModule.outputs.storageId.value, '2021-09-01').keys[0].value

articles/digital-twins/how-to-ingest-iot-hub-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ When the twin is created successfully, the CLI output from the command should lo
7777

7878
In this section, you'll create an Azure function to access Azure Digital Twins and update twins based on IoT telemetry events that it receives. Follow the steps below to create and publish the function.
7979

80-
1. First, create a new Azure Functions project.
80+
1. First, create a new Azure Functions project of Event Grid trigger type.
8181

8282
You can do this using **Visual Studio** (for instructions, see [Develop Azure Functions using Visual Studio](../azure-functions/functions-develop-vs.md#create-an-azure-functions-project)), **Visual Studio Code** (for instructions, see [Create a C# function in Azure using Visual Studio Code](../azure-functions/create-first-function-vs-code-csharp.md?tabs=in-process#create-an-azure-functions-project)), or the **Azure CLI** (for instructions, see [Create a C# function in Azure from the command line](../azure-functions/create-first-function-cli-csharp.md?tabs=azure-cli%2Cin-process#create-a-local-function-project)).
8383

articles/spring-apps/quickstart-deploy-apps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,11 +228,11 @@ Use the following steps to create and deploys apps on Azure Spring Apps using th
228228
```azurecli
229229
az spring app deploy \
230230
--name api-gateway \
231-
--jar-path spring-petclinic-api-gateway/target/spring-petclinic-api-gateway-2.5.1.jar \
231+
--artifact-path spring-petclinic-api-gateway/target/spring-petclinic-api-gateway-2.5.1.jar \
232232
--jvm-options="-Xms2048m -Xmx2048m"
233233
az spring app deploy \
234234
--name customers-service \
235-
--jar-path spring-petclinic-customers-service/target/spring-petclinic-customers-service-2.5.1.jar \
235+
--artifact-path spring-petclinic-customers-service/target/spring-petclinic-customers-service-2.5.1.jar \
236236
--jvm-options="-Xms2048m -Xmx2048m"
237237
```
238238

0 commit comments

Comments
 (0)