Azure Container Apps · Arazzo Workflow
Azure Container Apps Deploy App Into New Environment
Version 1.0.0
Create a managed environment, wait for it, then create a container app inside it and wait for that too.
Provider
Workflows
deploy-app-into-new-environment
Stand up a managed environment and deploy a container app into it end to end.
Creates a managed environment, polls until it is Succeeded, then creates a container app referencing that environment and polls until the app is Succeeded.
1
createEnvironment
ManagedEnvironments_CreateOrUpdate
Create the managed environment that will host the app, supplying its location in the ARM properties envelope.
2
pollEnvironment
ManagedEnvironments_Get
Read the environment and check its provisioningState, looping while it is still being set up and proceeding once it reaches Succeeded.
3
createApp
ContainerApps_CreateOrUpdate
Create the container app bound to the new environment id with a single container and external ingress in the ARM properties envelope.
4
pollApp
ContainerApps_Get
Read the container app and check its provisioningState, looping while it is still in progress and ending once it settles.