Skip to content

Commit 5f22202

Browse files
authored
Merge pull request #104539 from dksimpson/DKS-US1669724-1
Fix tags in Azure CLI code blocks - batch 1
2 parents fa03d91 + 9e3b4c4 commit 5f22202

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

articles/app-service/containers/deploy-container-github-action.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ az ad sp create-for-rbac --name "myApp" --role contributor \
3636
--scopes /subscriptions/{subscription-id}/resourceGroups/{resource-group} \
3737
--sdk-auth
3838
39-
# Replace {subscription-id}, {resource-group} with the subscription, resource group details of the WebApp
39+
# Replace {subscription-id}, {resource-group} with the subscription, resource group details of the WebApp
4040
```
4141

4242
The output is a JSON object with the role assignment credentials that provide access to your App Service app similar to below. Copy this JSON object to authenticate from GitHub.
4343

44-
```azurecli
44+
```output
4545
{
4646
"clientId": "<GUID>",
4747
"clientSecret": "<GUID>",

articles/azure-resource-manager/templates/cross-resource-group-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ az group deployment create \
350350

351351
The output from the preceding example is:
352352

353-
```azurecli
353+
```output
354354
"outputs": {
355355
"defaultScopeRG": {
356356
"type": "String",

articles/azure-resource-manager/templates/deploy-cli.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ az group deployment create \
5757

5858
The deployment can take a few minutes to complete. When it finishes, you see a message that includes the result:
5959

60-
```azurecli
60+
```output
6161
"provisioningState": "Succeeded",
6262
```
6363

@@ -177,7 +177,7 @@ az group deployment validate \
177177

178178
If no errors are detected, the command returns information about the test deployment. In particular, notice that the **error** value is null.
179179

180-
```azurecli
180+
```output
181181
{
182182
"error": null,
183183
"properties": {
@@ -186,7 +186,7 @@ If no errors are detected, the command returns information about the test deploy
186186

187187
If an error is detected, the command returns an error message. For example, passing an incorrect value for the storage account SKU, returns the following error:
188188

189-
```azurecli
189+
```output
190190
{
191191
"error": {
192192
"code": "InvalidTemplate",
@@ -202,7 +202,7 @@ If an error is detected, the command returns an error message. For example, pass
202202

203203
If your template has a syntax error, the command returns an error indicating it couldn't parse the template. The message indicates the line number and position of the parsing error.
204204

205-
```azurecli
205+
```output
206206
{
207207
"error": {
208208
"code": "InvalidTemplate",

0 commit comments

Comments
 (0)