You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/spring-apps/quickstart.md
+18-18Lines changed: 18 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ Use the following steps to create a service instance of Azure Spring Apps.
52
52
az account show
53
53
```
54
54
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.
56
56
57
57
:::image type="content" source="media/quickstart/azure-storage-subscription.png" alt-text="Screenshot of Azure Storage subscription." lightbox="media/quickstart/azure-storage-subscription.png":::
58
58
@@ -62,29 +62,29 @@ Use the following steps to create a service instance of Azure Spring Apps.
62
62
az account list --output table
63
63
```
64
64
65
-
1.Use the following command to choose and link to your subscription.
65
+
1.Set your default subscription.
66
66
67
67
```azurecli-interactive
68
68
az account set --subscription <subscription-id>
69
69
```
70
70
71
-
1.Use the following command to create a resource group.
71
+
1.Create a resource group.
72
72
73
73
```azurecli-interactive
74
74
az group create \
75
75
--resource-group <name-of-resource-group> \
76
76
--location eastus
77
77
```
78
78
79
-
1.Use the following command to create an Azure Spring Apps service instance.
79
+
1.Create an Azure Spring Apps service instance.
80
80
81
81
```azurecli-interactive
82
82
az spring create \
83
83
--resource-group <name-of-resource-group> \
84
-
--name <service-instance-name>
84
+
--name <Azure-Spring-Apps-instance-name>
85
85
```
86
86
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.
88
88
89
89
## Create an app in your Azure Spring Apps instance
90
90
@@ -97,7 +97,7 @@ Use the following command to specify the app name on Azure Spring Apps as *hello
97
97
```azurecli-interactive
98
98
az spring app create \
99
99
--resource-group <name-of-resource-group> \
100
-
--service <service-instance-name> \
100
+
--service <Azure-Spring-Apps-instance-name> \
101
101
--name hellospring \
102
102
--assign-endpoint true
103
103
```
@@ -112,7 +112,7 @@ Use the following steps to clone the Spring Boot sample project.
@@ -168,7 +168,7 @@ Use the following steps to create a service instance of Azure Spring Apps.
168
168
az account show
169
169
```
170
170
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.
172
172
173
173
:::image type="content" source="media/quickstart/azure-storage-subscription.png" alt-text="Screenshot of Azure Storage subscription." lightbox="media/quickstart/azure-storage-subscription.png":::
174
174
@@ -178,16 +178,16 @@ Use the following steps to create a service instance of Azure Spring Apps.
178
178
az account list --output table
179
179
```
180
180
181
-
1. Use the following command to choose and link to your subscription.
181
+
1. Use the following command to set your default subscription.
182
182
183
183
```azurecli-interactive
184
184
az account set --subscription <subscription-id>
185
185
```
186
186
187
-
1. Define variables for this quickstart.
187
+
1. Define variables for this quickstart with the names of your resources and desired settings.
@@ -233,7 +233,7 @@ Use the following steps to create a service instance of Azure Spring Apps.
233
233
234
234
## Create an app in your Azure Spring Apps instance
235
235
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.
237
237
</br>
238
238

239
239
</br>
@@ -250,7 +250,7 @@ az spring app create \
250
250
--assign-endpoint true
251
251
```
252
252
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`.
254
254
255
255
:::image type="content" source="media/quickstart/bannerapp.png" alt-text="Screenshot of the welcome page." lightbox="media/quickstart/bannerapp.png":::
256
256
@@ -264,7 +264,7 @@ Use the following steps to clone the Spring Boot sample project.
1.Use the following command to move to the project folder.
267
+
1.Move to the project folder.
268
268
269
269
```azurecli-interactive
270
270
cd gs-spring-boot/complete
@@ -353,11 +353,11 @@ Use the following steps to create an instance of Azure Spring Apps using the Azu
353
353
354
354
:::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":::
355
355
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:
357
357
358
358
-**Subscription**: Select the subscription you want to be billed for this resource.
359
359
-**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.
361
361
-**Region**: Select the region for your service instance.
362
362
363
363
:::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