How do I define multiple Azure services in a monorepo with azd when my Container App uses two images? #6657
-
|
Hey, I have a question about structuring a monorepo with the Azure Developer CLI, especially when using Azure Container Apps. I currently have:
Planned repository structure Goal And do to that i need to specify the services in my azure.yaml, something like the following: services:
eventhub:
resourceName: ${eventhub_name}
module: EventHub
aca:
host: containerapp
image: ${kibanaImage}
module: KibanaElastic
functionapp:
resourceName: ${site_name}
language: dotnet
project: ./src/function/functionapp.csproj
host: appservice
resourceGroup: ${rg_name}Issue I'm running into is my Container App actually uses two separate container images |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
It turns out the new layered provisioning support in azd 1.19.0 actually addresses exactly what I was trying to achieve. The ability to define multiple infra layers in azure.yaml (e.g. eventhub, aca and the functionapp) One thing I’m still unsure about though: |
Beta Was this translation helpful? Give feedback.
It turns out the new layered provisioning support in azd 1.19.0 actually addresses exactly what I was trying to achieve. The ability to define multiple infra layers in azure.yaml (e.g. eventhub, aca and the functionapp)
One thing I’m still unsure about though:
apart from the Azure Developer CLI (azd) – October 2025 blog post, is there any official documen…