File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -221,11 +221,11 @@ First, extract identifiable information from the environment.
221221# [ Bash] ( #tab/bash )
222222
223223``` bash
224- ENVIRONMENT_DEFAULT_DOMAIN=` az containerapp env show --name ${CONTAINERAPPS_ENVIRONMENT} --resource-group ${RESOURCE_GROUP} --query defaultDomain --out json | tr -d ' "' `
224+ ENVIRONMENT_DEFAULT_DOMAIN=` az containerapp env show --name ${CONTAINERAPPS_ENVIRONMENT} --resource-group ${RESOURCE_GROUP} --query properties. defaultDomain --out json | tr -d ' "' `
225225```
226226
227227``` bash
228- ENVIRONMENT_STATIC_IP=` az containerapp env show --name ${CONTAINERAPPS_ENVIRONMENT} --resource-group ${RESOURCE_GROUP} --query staticIp --out json | tr -d ' "' `
228+ ENVIRONMENT_STATIC_IP=` az containerapp env show --name ${CONTAINERAPPS_ENVIRONMENT} --resource-group ${RESOURCE_GROUP} --query properties. staticIp --out json | tr -d ' "' `
229229```
230230
231231``` bash
@@ -236,6 +236,7 @@ VNET_ID=`az network vnet show --resource-group ${RESOURCE_GROUP} --name ${VNET_N
236236
237237``` azurepowershell
238238$EnvironmentDefaultDomain = (Get-AzContainerAppManagedEnv -EnvName $ContainerAppsEnvironment -ResourceGroupName $ResourceGroupName).DefaultDomain
239+
239240```
240241
241242``` azurepowershell
You can’t perform that action at this time.
0 commit comments