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.
182182# [ Bash] ( #tab/bash )
183183
184184``` 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 ' "' `
186186```
187187
188188``` 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 ' "' `
190190```
191191
192192``` bash
@@ -196,11 +196,11 @@ VNET_ID=`az network vnet show --resource-group ${RESOURCE_GROUP} --name ${VNET_N
196196# [ PowerShell] ( #tab/powershell )
197197
198198``` 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)
200200```
201201
202202``` 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)
204204```
205205
206206``` powershell
You can’t perform that action at this time.
0 commit comments