Skip to content

Commit d7bdb65

Browse files
fixed CLI formatting
1 parent dfac29e commit d7bdb65

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

articles/spring-apps/quickstart.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,20 +57,24 @@ At the end of this quickstart, you'll have a working spring app running on Azure
5757
1. Use the following command to choose and link to your subscription.
5858

5959
```azurecli-interactive
60-
az account set --subscription <ID of a subscription from last step>
60+
az account set --subscription <subscription-id>
6161
```
6262

6363
1. Use the following command to create a Resource Group.
6464

6565
```azurecli-interactive
66-
az group create --name <Name of Resource Group> --location eastus
66+
az group create \
67+
--resource-group <name-of-resource-group> \
68+
--location eastus
6769
```
6870

6971
1. Use the following command to create an Azure Spring Apps service instance.
7072

7173
```azurecli-interactive
72-
az spring create -n <Name of service instance> -g <Name of Resource Group>
73-
``
74+
az spring create \
75+
--resource-group <name-of-resource-group> \
76+
--service <service-instance-name>
77+
```
7478

7579
1. Choose **Y** to install the Azure Spring Apps extension and run it.
7680

@@ -100,7 +104,6 @@ az spring app create \
100104
cd gs-spring-boot/complete
101105
```
102106

103-
104107
Use the following [Maven](https://maven.apache.org/what-is-maven.html) command to build the project.
105108

106109
```azurecli-interactive

0 commit comments

Comments
 (0)