Skip to content

Commit 22770fe

Browse files
Changed APP_ENV_DOMAIN to APP_ENVIRONMENT_DOMAIN in migrate-to-azure-container-apps-blue-green.md.
1 parent e796e9d commit 22770fe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/spring-apps/migration/migrate-to-azure-container-apps-blue-green.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,20 +96,20 @@ Use the following commands to test with the label-specific fully qualified domai
9696
# Get the containerapp environment default domain
9797
export APP_NAME=<app-name>
9898
99-
export APP_ENV_DOMAIN=$(az containerapp env show \
99+
export APP_ENVIRONMENT_DOMAIN=$(az containerapp env show \
100100
--resource-group <resource-group> \
101101
--name <app-environment-name> \
102102
--query "properties.defaultDomain" \
103103
--output tsv)
104104
105105
# Test the production FQDN
106-
curl -s https://$APP_NAME.$APP_ENV_DOMAIN
106+
curl -s https://$APP_NAME.$APP_ENVIRONMENT_DOMAIN
107107
108108
# Test the blue label FQDN
109-
curl -s https://$APP_NAME---blue.$APP_ENV_DOMAIN
109+
curl -s https://$APP_NAME---blue.$APP_ENVIRONMENT_DOMAIN
110110
111111
# Test the green label FQDN
112-
curl -s https://$APP_NAME---green.$APP_ENV_DOMAIN
112+
curl -s https://$APP_NAME---green.$APP_ENVIRONMENT_DOMAIN
113113
```
114114

115115
## Send production traffic to the green revision

0 commit comments

Comments
 (0)