Skip to content

Commit 71506cc

Browse files
committed
misc edits
1 parent 25aed97 commit 71506cc

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

articles/spring-apps/quickstart.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Use the following steps to create a service instance of Azure Spring Apps.
5252
az account show
5353
```
5454

55-
1. Azure Cloud Shell workspaces are temporary. On initial start, the shell prompts you to associate an [Azure Storage](../storage/common/storage-introduction.md) instance with your subscription to persist files across sessions.
55+
1. Azure Cloud Shell workspaces are temporary. When first started, the shell prompts you to select an [Azure Storage](../storage/common/storage-introduction.md) instance with your subscription to persist files across sessions.
5656

5757
:::image type="content" source="media/quickstart/azure-storage-subscription.png" alt-text="Screenshot of Azure Storage subscription." lightbox="media/quickstart/azure-storage-subscription.png":::
5858

@@ -62,29 +62,29 @@ Use the following steps to create a service instance of Azure Spring Apps.
6262
az account list --output table
6363
```
6464

65-
1. Use the following command to choose and link to your subscription.
65+
1. Set your default subscription.
6666

6767
```azurecli-interactive
6868
az account set --subscription <subscription-id>
6969
```
7070

71-
1. Use the following command to create a resource group.
71+
1. Create a resource group.
7272

7373
```azurecli-interactive
7474
az group create \
7575
--resource-group <name-of-resource-group> \
7676
--location eastus
7777
```
7878

79-
1. Use the following command to create an Azure Spring Apps service instance.
79+
1. Create an Azure Spring Apps service instance.
8080

8181
```azurecli-interactive
8282
az spring create \
8383
--resource-group <name-of-resource-group> \
84-
--name <service-instance-name>
84+
--name <Azure-Spring-Apps-instance-name>
8585
```
8686

87-
1. Choose **Y** to install the Azure Spring Apps extension and run it.
87+
1. Select **Y** to install the Azure Spring Apps extension and run it.
8888

8989
## Create an app in your Azure Spring Apps instance
9090

@@ -97,7 +97,7 @@ Use the following command to specify the app name on Azure Spring Apps as *hello
9797
```azurecli-interactive
9898
az spring app create \
9999
--resource-group <name-of-resource-group> \
100-
--service <service-instance-name> \
100+
--service <Azure-Spring-Apps-instance-name> \
101101
--name hellospring \
102102
--assign-endpoint true
103103
```
@@ -112,7 +112,7 @@ Use the following steps to clone the Spring Boot sample project.
112112
git clone -b boot-2.7 https://github.com/spring-guides/gs-spring-boot.git
113113
```
114114
115-
1. Use the following command to move to the project folder.
115+
1. Move to the project folder.
116116
117117
```azurecli-interactive
118118
cd gs-spring-boot/complete
@@ -131,7 +131,7 @@ Use the following command to deploy the *.jar* file for the app (*target/spring-
131131
```azurecli-interactive
132132
az spring app deploy \
133133
--resource-group <name-of-resource-group> \
134-
--service <service-instance-name> \
134+
--service <Azure-Spring-Apps-instance-name> \
135135
--name hellospring \
136136
--artifact-path target/spring-boot-complete-0.0.1-SNAPSHOT.jar
137137
```
@@ -168,7 +168,7 @@ Use the following steps to create a service instance of Azure Spring Apps.
168168
az account show
169169
```
170170

171-
1. Azure Cloud Shell workspaces are temporary. On initial start, the shell prompts you to associate an [Azure Storage](../storage/common/storage-introduction.md) instance with your subscription to persist files across sessions.
171+
1. Azure Cloud Shell workspaces are temporary. When first started, the shell prompts you to associate an [Azure Storage](../storage/common/storage-introduction.md) instance with your subscription to persist files across sessions.
172172

173173
:::image type="content" source="media/quickstart/azure-storage-subscription.png" alt-text="Screenshot of Azure Storage subscription." lightbox="media/quickstart/azure-storage-subscription.png":::
174174

@@ -178,16 +178,16 @@ Use the following steps to create a service instance of Azure Spring Apps.
178178
az account list --output table
179179
```
180180

181-
1. Use the following command to choose and link to your subscription.
181+
1. Use the following command to set your default subscription.
182182

183183
```azurecli-interactive
184184
az account set --subscription <subscription-id>
185185
```
186186

187-
1. Define variables for this quickstart.
187+
1. Define variables for this quickstart with the names of your resources and desired settings.
188188

189189
```azurecli-interactive
190-
LOCATION="<location>"
190+
LOCATION="<region>"
191191
RESOURCE_GROUP="<resource group>"
192192
MANAGED_ENVIRONMENT="<Azure-Container-Apps-environment-name>"
193193
SERVICE_NAME="<Azure-Spring-Apps-instance-name>"
@@ -233,7 +233,7 @@ Use the following steps to create a service instance of Azure Spring Apps.
233233

234234
## Create an app in your Azure Spring Apps instance
235235

236-
An [**App**](/azure/spring-apps/concept-understand-app-and-deployment) is an abstraction of one business app. Apps run in an Azure Spring Apps Service Instance, or simply service instance, as shown next.
236+
An [**App**](/azure/spring-apps/concept-understand-app-and-deployment) is an abstraction of one business app. Apps run in an Azure Spring Apps service instance, or simply service instance, as shown in the following diagram.
237237
</br>
238238
![Apps and Deployments](./media/spring-cloud-app-and-deployment/app-deployment-rev.png)
239239
</br>
@@ -250,7 +250,7 @@ az spring app create \
250250
--assign-endpoint true
251251
```
252252

253-
Azure Spring Apps creates an empty welcome application, and you can find the application url in the field `properties.url`.
253+
Azure Spring Apps creates an empty welcome application and provides its URL in the field named `properties.url`.
254254

255255
:::image type="content" source="media/quickstart/bannerapp.png" alt-text="Screenshot of the welcome page." lightbox="media/quickstart/bannerapp.png":::
256256

@@ -264,7 +264,7 @@ Use the following steps to clone the Spring Boot sample project.
264264
git clone -b boot-2.7 https://github.com/spring-guides/gs-spring-boot.git
265265
```
266266

267-
1. Use the following command to move to the project folder.
267+
1. Move to the project folder.
268268

269269
```azurecli-interactive
270270
cd gs-spring-boot/complete
@@ -353,11 +353,11 @@ Use the following steps to create an instance of Azure Spring Apps using the Azu
353353

354354
:::image type="content" source="media/quickstart/spring-apps-create.png" alt-text="Screenshot of Azure portal showing Azure Spring Apps resource with Create button highlighted." lightbox="media/quickstart/spring-apps-create.png":::
355355

356-
1. Fill out the form on the Azure Spring Apps **Create** page. Consider the following guidelines:
356+
1. Fill out the form on the Azure Spring Apps **Create** page. Consider the following guidelines:
357357

358358
- **Subscription**: Select the subscription you want to be billed for this resource.
359359
- **Resource group**: Creating new resource groups for new resources is a best practice.
360-
- **Service Name**: Specify the service instance name. You'll use this name later in this article where the *\<service-instance-name\>* placeholder appears. The name must be between 4 and 32 characters long and can contain only lowercase letters, numbers, and hyphens. The first character of the service name must be a letter and the last character must be either a letter or a number.
360+
- **Service Name**: Specify the service instance name. You'll use this name later in this article where the *\<Azur-Spring-Apps-instance-name\>* placeholder appears. The name must be between 4 and 32 characters long and can contain only lowercase letters, numbers, and hyphens. The first character of the service name must be a letter and the last character must be either a letter or a number.
361361
- **Region**: Select the region for your service instance.
362362

363363
:::image type="content" source="media/quickstart/portal-start.png" alt-text="Screenshot of Azure portal showing Azure Spring Apps Create page." lightbox="media/quickstart/portal-start.png":::

0 commit comments

Comments
 (0)