Skip to content

Commit 23d22d2

Browse files
authored
Fix the wrong new line in the script
There are comments and scripts that are multiple lines but they're not formatted correctly. For example, the new line of comment isn't starting with `#`. And the line in the command doesn't end with `\` to mean that the next line is a continuation.
1 parent fe62785 commit 23d22d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/event-grid/configure-private-endpoints.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,8 @@ topicName = "<TOPIC NAME>"
210210
connectionName="<ENDPOINT CONNECTION NAME>"
211211
endpointName=<ENDPOINT NAME>
212212
213-
# resource ID of the topic. replace <SUBSCRIPTION ID>, <RESOURCE GROUP NAME>, and <TOPIC NAME>
214-
topicResourceID="/subscriptions/<SUBSCRIPTION ID>/resourceGroups/<RESOURCE GROUP NAME>/providers/Microsoft.EventGrid/topics/<TOPIC NAME>"
213+
# resource ID of the topic. replace <SUBSCRIPTION ID>, <RESOURCE GROUP NAME>, and <TOPIC NAME>
214+
# topicResourceID="/subscriptions/<SUBSCRIPTION ID>/resourceGroups/<RESOURCE GROUP NAME>/providers/Microsoft.EventGrid/topics/<TOPIC NAME>"
215215
216216
# select subscription
217217
az account set --subscription $subscriptionID
@@ -251,7 +251,7 @@ az eventgrid topic show \
251251
--name $topicName
252252
253253
# create private endpoint for the topic you created
254-
az network private-endpoint create
254+
az network private-endpoint create \
255255
--resource-group $resourceGroupName \
256256
--name $endpointName \
257257
--vnet-name $vNetName \

0 commit comments

Comments
 (0)