AppManagedEnvironment
Represents Azure Container App managed environments.
Labels: :ArmResource:AppManagedEnvironment
Properties:
id- Resource ID (primary key)daprAIConnectionString- Dapr Application Insights connection stringdefaultDomain- Default domain for the environmenteventStreamEndpoint- Event stream endpointinfrastructureResourceGroup- Backing infrastructure resource groupmtls- Mutual TLS enabledencryption- Peer traffic encryption enabledstaticIp- Static IP assigned to the environment
Relationships
Outgoing
- AppManagedEnvironment →
DEPLOYS→ ContainerApp - Container Apps deployed into this environment
Examples
// Find environments and their apps
MATCH (env:AppManagedEnvironment)-[:DEPLOYS]->(app:ContainerApp)
RETURN env.defaultDomain, collect(app.fqdn) AS apps