File tree Expand file tree Collapse file tree 3 files changed +4
-24
lines changed Expand file tree Collapse file tree 3 files changed +4
-24
lines changed Original file line number Diff line number Diff line change @@ -11,30 +11,12 @@ metadata:
11111212
1313hooks :
14- postdeploy :
14+ postprovision :
1515 posix :
1616 shell : sh
17- run : |
18- echo "🧭 Web App Details:"
19- echo "✅ Name: $CONTAINER_WEB_APP_NAME"
20- echo "🌐 Endpoint: https://$CONTAINER_WEB_APP_FQDN"
21- echo "🔗 Portal URL: https://portal.azure.com/#resource/subscriptions/$AZURE_SUBSCRIPTION_ID/resourceGroups/$AZURE_RESOURCE_GROUP/providers/Microsoft.App/containerApps/$CONTAINER_WEB_APP_NAME"
22-
23- echo "🧭 API App Details:"
24- echo "✅ Name: $CONTAINER_API_APP_NAME"
25- echo "🌐 Endpoint: https://$CONTAINER_API_APP_FQDN"
26- echo "🔗 Portal URL: https://portal.azure.com/#resource/subscriptions/$AZURE_SUBSCRIPTION_ID/resourceGroups/$AZURE_RESOURCE_GROUP/providers/Microsoft.App/containerApps/$CONTAINER_API_APP_NAME"
17+ run : sed -i 's/\r$//' ./infra/scripts/post_deployment.sh; ./infra/scripts/post_deployment.sh
2718 interactive : true
2819 windows :
2920 shell : pwsh
30- run : |
31- Write-Host "🧭 Web App Details:"
32- Write-Host "✅ Name: $env:CONTAINER_WEB_APP_NAME"
33- Write-Host "🌐 Endpoint: https://$env:CONTAINER_WEB_APP_FQDN"
34- Write-Host "🔗 Portal URL: https://portal.azure.com/#resource/subscriptions/$env:AZURE_SUBSCRIPTION_ID/resourceGroups/$env:AZURE_RESOURCE_GROUP/providers/Microsoft.App/containerApps/$env:CONTAINER_WEB_APP_NAME" -ForegroundColor Cyan
35-
36- Write-Host "🧭 API App Details:"
37- Write-Host "✅ Name: $env:CONTAINER_API_APP_NAME"
38- Write-Host "🌐 Endpoint: https://$env:CONTAINER_API_APP_FQDN"
39- Write-Host "🔗 Portal URL: https://portal.azure.com/#resource/subscriptions/$env:AZURE_SUBSCRIPTION_ID/resourceGroups/$env:AZURE_RESOURCE_GROUP/providers/Microsoft.App/containerApps/$env:CONTAINER_API_APP_NAME" -ForegroundColor Cyan
21+ run : ./infra/scripts/post_deployment.ps1
4022 interactive : true
Original file line number Diff line number Diff line change @@ -1367,4 +1367,4 @@ output CONTAINER_REGISTRY_NAME string = avmContainerRegistry.outputs.name
13671367output CONTAINER_REGISTRY_LOGIN_SERVER string = avmContainerRegistry .outputs .loginServer
13681368
13691369@description ('The resource group the resources were deployed into.' )
1370- output resourceGroupName string = resourceGroup ().name
1370+ output AZURE_RESOURCE_GROUP string = resourceGroup ().name
Original file line number Diff line number Diff line change 55
66echo " 🔍 Fetching container app info from azd environment..."
77
8- echo " Started at: $( date) "
9-
108# Load values from azd env
119CONTAINER_WEB_APP_NAME=$( azd env get-value CONTAINER_WEB_APP_NAME)
1210CONTAINER_WEB_APP_FQDN=$( azd env get-value CONTAINER_WEB_APP_FQDN)
You can’t perform that action at this time.
0 commit comments