Azure Container Apps
An Azure service that provides a general-purpose, serverless container platform.
544 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
We have an Azure Container Registry, which we keep behind a private endpoint.
The private endpoint is in the same VNET as the "Azure Container Apps" Environment.
I am using a User Managed Identity to pull images from ACR.
On deploying the Azure Container App via te following bicep script I get the following errors
param identity string
param location string = resourceGroup().location
param containerAppName string
param environment string
param appEnvironmentName string
param azureContainerRegistry string
param azureContainerRegistryImage string
param azureContainerRegistryImageTag string
var identityResourceId = resourceId(resourceGroup().name , 'Microsoft.ManagedIdentity/userAssignedIdentities', identity)
resource containerApp 'Microsoft.App/containerApps@2024-10-02-preview' = {
name: toLower('${containerAppName}-${environment}')
location: location
identity: {
type: 'UserAssigned'
userAssignedIdentities: {
'${identityResourceId}': {}
}
}
properties: {
environmentId: resourceId(resourceGroup().name, 'Microsoft.App/managedEnvironments', appEnvironmentName)
configuration: {
identitySettings: [
{
identity: identityResourceId
lifecycle: 'All'
}
]
ingress: {
external: true
targetPort: 5000
allowInsecure: false
traffic: [
{
latestRevision: true
weight: 100
}
]
}
registries: [
{
server: '${azureContainerRegistry}.azurecr.io'
identity: identityResourceId
}
]
}
template: {
containers: [
{
image: '${azureContainerRegistry}.azurecr.io/${azureContainerRegistryImage}:${azureContainerRegistryImageTag}'
name: 'backend'
resources: {
cpu: 1
memory: '1Gi'
}
}
]
scale: {
minReplicas: 1
maxReplicas: 3
}
}
}
}
The deployment fails with the following errors
{"status":"Failed","error":{"code":"DeploymentFailed","target":"/subscriptions/<redacted>/resourceGroups/Services_RG/providers/Microsoft.Resources/deployments/dev","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-deployment-operations for usage details.","details":[{"code":"ResourceDeploymentFailure","target":"/subscriptions/<redacted>/resourceGroups/Services_RG/providers/Microsoft.App/containerApps/yupanaappbackend-dev","message":"The resource write operation failed to complete successfully, because it reached terminal provisioning state 'Failed'.","details":[{"code":"ContainerAppOperationError","message":"Failed to provision revision for container app 'yupanaappbackend-dev'. Error details: The following field(s) are either invalid or missing. Field 'template.containers.backend.image' is invalid with details: 'Invalid value: \"<redacted>.azurecr.io/backend:beta\": GET https:: DENIED: requested access to the resource is denied';.."}]}]}}