Skip to content

Commit d92d2ce

Browse files
fix: Removed Post provision hook as the output is being truncated
1 parent 7a46d3e commit d92d2ce

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

azure.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,3 @@ hooks:
1515
windows:
1616
shell: pwsh
1717
run: $timestamp = Get-Date -Format "yyyyMMdd-HHmmss"; $logFile = "azd_preprovision_$timestamp.log"; ./infra/scripts/docker-build.ps1 $env:AZURE_SUBSCRIPTION_ID $env:AZURE_ENV_NAME $env:AZURE_LOCATION $env:AZURE_RESOURCE_GROUP $env:USE_LOCAL_BUILD *>&1 | Tee-Object -FilePath $logFile
18-
postprovision:
19-
posix:
20-
shell: sh
21-
run: sed -i 's/\r$//' ./infra/scripts/post_deployment.sh; ./infra/scripts/post_deployment.sh
22-
windows:
23-
shell: pwsh
24-
run: ./infra/scripts/post_deployment.ps1
25-

infra/main.bicep

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,3 +251,8 @@ module updateContainerApp './container_app/deploy_container_app_api_web.bicep' =
251251
}
252252
dependsOn: [roleAssignments]
253253
}
254+
255+
output CONTAINER_WEB_APP_NAME string = containerApps.outputs.containerAppWebName
256+
output CONTAINER_API_APP_NAME string = containerApps.outputs.containerAppApiName
257+
output CONTAINER_WEB_APP_FQDN string = containerApps.outputs.containweAppWebEndPoint
258+
output CONTAINER_API_APP_FQDN string = containerApps.outputs.containweAppApiEndPoint

0 commit comments

Comments
 (0)