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-cloud/quickstart-deploy-apps-enterprise.md
+7-8Lines changed: 7 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -136,15 +136,14 @@ Access the `api gateway` and `customers service` applications from the browser u
136
136
137
137
## Clean up resources
138
138
139
-
1. Open the [Azure portal](https://ms.portal.azure.com/?AppPlatformExtension=entdf#home), then delete the service instance as in the following screenshot.
139
+
If you plan to continue working with subsequent quickstarts and tutorials, you might want to leave these resources in place. When no longer needed, delete the resource group, which deletes the resources in the resource group. To delete the resource group by using Azure CLI, use the following commands:
140
140
141
-

142
-
143
-
1. Run the following command to remove the preview version of the Azure CLI extension.
Copy file name to clipboardExpand all lines: articles/spring-cloud/quickstart-deploy-apps.md
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -415,9 +415,18 @@ Other Spring applications included in this sample can be deployed similarly.
415
415
416
416
::: zone-end
417
417
418
-
## Next steps
418
+
## Clean up resources
419
+
420
+
If you plan to continue working with subsequent quickstarts and tutorials, you might want to leave these resources in place. When no longer needed, delete the resource group, which deletes the resources in the resource group. To delete the resource group by using Azure CLI, use the following commands:
421
+
422
+
```azurecli
423
+
echo "Enter the Resource Group name:" &&
424
+
read resourceGroupName &&
425
+
az group delete --name $resourceGroupName &&
426
+
echo "Press [ENTER] to continue ..."
427
+
```
419
428
420
-
In this quickstart, you created Azure resources that will continue to accrue charges if they remain in your subscription. If you don't intend to continue on to the next quickstart, see [Clean up resources](./quickstart-logs-metrics-tracing.md#clean-up-resources). Otherwise, advance to the next quickstart:
429
+
## Next steps
421
430
422
431
> [!div class="nextstepaction"]
423
-
> [Set up Log Analytics](./quickstart-setup-log-analytics.md)
432
+
> [Quickstart: Set up a Log Analytics workspace](quickstart-setup-log-analytics.md)
Copy file name to clipboardExpand all lines: articles/spring-cloud/quickstart-deploy-infrastructure-vnet-bicep.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -154,7 +154,7 @@ You can either use the Azure portal to check the deployed resources, or use Azur
154
154
155
155
If you plan to continue working with subsequent quickstarts and tutorials, you might want to leave these resources in place. When no longer needed, delete the resource group, which deletes the resources in the resource group. To delete the resource group by using Azure CLI, use the following commands:
Copy file name to clipboardExpand all lines: articles/spring-cloud/quickstart-integrate-azure-database-mysql.md
+89-70Lines changed: 89 additions & 70 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,7 @@ Pet Clinic, as deployed in the default configuration [Quickstart: Build and depl
17
17
18
18
## Variables preparation
19
19
20
-
We will use the following values. Save them in a text file or environment variables to avoid errors.
21
-
The password should be at least 8 characters long and contain at least one English uppercase letter, one English lowercase letter, one number, and one non-alphanumeric character (!, $, #, %, and so on.).
20
+
We will use the following values. Save them in a text file or environment variables to avoid errors. The password should be at least 8 characters long and contain at least one English uppercase letter, one English lowercase letter, one number, and one non-alphanumeric character (!, $, #, %, and so on.).
22
21
23
22
```bash
24
23
export RESOURCE_GROUP=<resource-group-name># customize this
To enable MySQL as database for the sample app, simply update the *customer-service* app with active profile MySQL and database credentials as environment variables.
128
131
129
132
```azcli
130
-
az spring-cloud app update --name customers-service \
If you plan to continue working with subsequent quickstarts and tutorials, you might want to leave these resources in place. When no longer needed, delete the resource group, which deletes the resources in the resource group. To delete the resource group by using Azure CLI, use the following commands:
176
+
177
+
```azurecli
178
+
echo "Enter the Resource Group name:" &&
179
+
read resourceGroupName &&
180
+
az group delete --name $resourceGroupName &&
181
+
echo "Press [ENTER] to continue ..."
182
+
```
183
+
165
184
## Next steps
166
185
167
186
*[Bind an Azure Database for MySQL instance to your application in Azure Spring Cloud](how-to-bind-mysql.md)
Copy file name to clipboardExpand all lines: articles/spring-cloud/quickstart-logs-metrics-tracing.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -232,10 +232,13 @@ Select an exception to see the end-to-end transaction and stacktrace in context:
232
232
233
233
## Clean up resources
234
234
235
-
In these quickstarts, you created Azure resources that will continue to accrue charges if they remain in your subscription. If you don't expect to need these resources in the future, delete the resource group by using the portal or by running the following command in the Cloud Shell:
235
+
If you plan to continue working with subsequent quickstarts and tutorials, you might want to leave these resources in place. When no longer needed, delete the resource group, which deletes the resources in the resource group. To delete the resource group by using Azure CLI, use the following commands:
236
236
237
237
```azurecli
238
-
az group delete --name <your resource group name; for example: helloworld-1558400876966-rg> --yes
238
+
echo "Enter the Resource Group name:" &&
239
+
read resourceGroupName &&
240
+
az group delete --name $resourceGroupName &&
241
+
echo "Press [ENTER] to continue ..."
239
242
```
240
243
241
244
In an earlier quickstart, you also set the default resource group name. If you don't intend to continue to the next quickstart, clear out that default by running the following CLI command:
@@ -249,8 +252,5 @@ az config set defaults.group=
249
252
To explore more monitoring capabilities of Azure Spring Cloud, see:
Copy file name to clipboardExpand all lines: articles/spring-cloud/quickstart-provision-service-instance-enterprise.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,6 +108,17 @@ It takes about 5 minutes to finish the resource provisioning.
108
108
109
109
---
110
110
111
+
## Clean up resources
112
+
113
+
If you plan to continue working with subsequent quickstarts and tutorials, you might want to leave these resources in place. When no longer needed, delete the resource group, which deletes the resources in the resource group. To delete the resource group by using Azure CLI, use the following commands:
0 commit comments