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.
221
221
# [ Bash] ( #tab/bash )
222
222
223
223
``` 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 ' "' `
225
225
```
226
226
227
227
``` 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 ' "' `
229
229
```
230
230
231
231
``` bash
@@ -236,6 +236,7 @@ VNET_ID=`az network vnet show --resource-group ${RESOURCE_GROUP} --name ${VNET_N
236
236
237
237
``` azurepowershell
238
238
$EnvironmentDefaultDomain = (Get-AzContainerAppManagedEnv -EnvName $ContainerAppsEnvironment -ResourceGroupName $ResourceGroupName).DefaultDomain
239
+
239
240
```
240
241
241
242
``` azurepowershell
You can’t perform that action at this time.
0 commit comments