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
@@ -177,7 +181,7 @@ The following commands help you define variables and ensure your Container Apps
177
181
178
182
# [Bash](#tab/bash)
179
183
180
-
```azurecli
184
+
```bash
181
185
az containerapp env create \
182
186
--name $ENVIRONMENT_NAME \
183
187
--resource-group $RESOURCE_GROUP \
@@ -187,7 +191,7 @@ The following commands help you define variables and ensure your Container Apps
187
191
188
192
# [PowerShell](#tab/powershell)
189
193
190
-
```azurecli
194
+
```powershell
191
195
az containerapp env create `
192
196
--name $ENVIRONMENT_NAME`
193
197
--resource-group $RESOURCE_GROUP`
@@ -201,7 +205,7 @@ The following commands help you define variables and ensure your Container Apps
201
205
202
206
# [Bash](#tab/bash)
203
207
204
-
```azurecli
208
+
```bash
205
209
az containerapp create \
206
210
--name $CONTAINER_APP_NAME \
207
211
--environment $ENVIRONMENT_NAME \
@@ -211,7 +215,7 @@ The following commands help you define variables and ensure your Container Apps
211
215
212
216
# [PowerShell](#tab/powershell)
213
217
214
-
```azurecli
218
+
```powershell
215
219
az containerapp create `
216
220
--name $CONTAINER_APP_NAME`
217
221
--environment $ENVIRONMENT_NAME`
@@ -221,13 +225,13 @@ The following commands help you define variables and ensure your Container Apps
221
225
222
226
Once created, the command returns a "Succeeded" message.
223
227
224
-
## Configure init-container, environment variables, and volumes to set up Application Insights integration
228
+
## Configure init-container, secrets, environment variables, and volumes to set up Application Insights integration
225
229
226
230
1. Get current configurations of the running Container App.
227
231
228
232
# [Bash](#tab/bash)
229
233
230
-
```azurecli
234
+
```bash
231
235
az containerapp show \
232
236
--name $CONTAINER_APP_NAME \
233
237
--resource-group $RESOURCE_GROUP \
@@ -236,7 +240,7 @@ The following commands help you define variables and ensure your Container Apps
236
240
237
241
# [PowerShell](#tab/powershell)
238
242
239
-
```azurecli
243
+
```powershell
240
244
az containerapp show `
241
245
--name $CONTAINER_APP_NAME`
242
246
--resource-group $RESOURCE_GROUP`
@@ -313,7 +317,7 @@ The following commands help you define variables and ensure your Container Apps
313
317
314
318
# [Bash](#tab/bash)
315
319
316
-
```azurecli
320
+
```bash
317
321
az containerapp update \
318
322
--name $CONTAINER_APP_NAME \
319
323
--resource-group $RESOURCE_GROUP\
@@ -323,7 +327,7 @@ The following commands help you define variables and ensure your Container Apps
323
327
324
328
# [PowerShell](#tab/powershell)
325
329
326
-
```azurecli
330
+
```powershell
327
331
az containerapp update `
328
332
--name $CONTAINER_APP_NAME`
329
333
--resource-group $RESOURCE_GROUP`
@@ -338,11 +342,11 @@ The following commands help you define variables and ensure your Container Apps
338
342
The resources created in this tutorial contribute to your Azure bill. If you aren't going to keep them in the long term, run the following commands to clean them up.
0 commit comments