File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -182,11 +182,11 @@ First, extract identifiable information from the environment.
182
182
# [ Bash] ( #tab/bash )
183
183
184
184
``` bash
185
- ENVIRONMENT_DEFAULT_DOMAIN=` az containerapp env show --name ${CONTAINERAPPS_ENVIRONMENT} --resource-group ${RESOURCE_GROUP} --query defaultDomain --out json | tr -d ' "' `
185
+ ENVIRONMENT_DEFAULT_DOMAIN=` az containerapp env show --name ${CONTAINERAPPS_ENVIRONMENT} --resource-group ${RESOURCE_GROUP} --query properties. defaultDomain --out json | tr -d ' "' `
186
186
```
187
187
188
188
``` bash
189
- ENVIRONMENT_STATIC_IP=` az containerapp env show --name ${CONTAINERAPPS_ENVIRONMENT} --resource-group ${RESOURCE_GROUP} --query staticIp --out json | tr -d ' "' `
189
+ ENVIRONMENT_STATIC_IP=` az containerapp env show --name ${CONTAINERAPPS_ENVIRONMENT} --resource-group ${RESOURCE_GROUP} --query properties. staticIp --out json | tr -d ' "' `
190
190
```
191
191
192
192
``` bash
@@ -196,11 +196,11 @@ VNET_ID=`az network vnet show --resource-group ${RESOURCE_GROUP} --name ${VNET_N
196
196
# [ PowerShell] ( #tab/powershell )
197
197
198
198
``` powershell
199
- $ENVIRONMENT_DEFAULT_DOMAIN=(az containerapp env show --name $CONTAINERAPPS_ENVIRONMENT --resource-group $RESOURCE_GROUP --query defaultDomain -o tsv)
199
+ $ENVIRONMENT_DEFAULT_DOMAIN=(az containerapp env show --name $CONTAINERAPPS_ENVIRONMENT --resource-group $RESOURCE_GROUP --query properties. defaultDomain -o tsv)
200
200
```
201
201
202
202
``` powershell
203
- $ENVIRONMENT_STATIC_IP=(az containerapp env show --name $CONTAINERAPPS_ENVIRONMENT --resource-group $RESOURCE_GROUP --query staticIp -o tsv)
203
+ $ENVIRONMENT_STATIC_IP=(az containerapp env show --name $CONTAINERAPPS_ENVIRONMENT --resource-group $RESOURCE_GROUP --query properties. staticIp -o tsv)
204
204
```
205
205
206
206
``` powershell
You can’t perform that action at this time.
0 commit comments