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
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -195,34 +195,34 @@ Use the following steps to provision a service instance.
195
195
```azurecli-interactive
196
196
az group create \
197
197
--resource-group ${RESOURCE_GROUP} \
198
-
--location $LOCATION
198
+
--location ${LOCATION}
199
199
```
200
200
1. An Azure Container App environment creates a secure boundary around a group apps. Apps deployed to the same environment are deployed in the same virtual network and write logs to the same [Log Analytics workspace](https://learn.microsoft.com/azure/azure-monitor/logs/log-analytics-workspace-overview). To create the environment, run the following command
201
201
202
202
```azurecli-interactive
203
203
az containerapp env create \
204
-
--name $MANAGED_ENVIRONMENT \
205
-
--resource-group $RESOURCE_GROUP \
206
-
--location $LOCATION
204
+
--name ${MANAGED_ENVIRONMENT} \
205
+
--resource-group ${RESOURCE_GROUP} \
206
+
--location ${LOCATION}
207
207
```
208
208
209
209
1. Set the environment varable:
210
210
```azurecli-interactive
211
211
MANAGED_ENV_RESOURCE_ID=$(az containerapp env show \
212
-
--name $MANAGED_ENVIRONMENT \
213
-
--resource-group $RESOURCE_GROUP \
212
+
--name ${MANAGED_ENVIRONMENT} \
213
+
--resource-group ${RESOURCE_GROUP} \
214
214
--query id -o tsv)
215
215
```
216
216
217
217
1. Use the following command to create an Azure Spring Apps service instance.The StandardGen2 Azure Spring Apps instance is built on top of the Container Environment: Create your Azure Spring Apps instance by specifying the resource id of the ACA Environment you just created:
0 commit comments