You are defining an Azure Container App named `order-processor` within an Azure Resource Manager Bicep template. The container app has the following deployment requirements:
1. It must pull its container image from a private Azure Container Registry named `myregistry.azurecr.io` using a user-assigned managed identity. The identity's resource ID is `/subscriptions/.../resourceGroups/.../providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-identity`.
2. It must accept public HTTPS traffic from the internet on port 8080 using the HTTP/2 transport protocol.
3. It must scale between 2 and 10 replicas based on average CPU usage.
Which of the following configuration blocks must be defined inside the `properties.configuration` section of the Bicep template to satisfy the registry credentials and ingress requirements? (Select TWO)
- registries: [
{
server: 'myregistry.azurecr.io'
identity: '/subscriptions/.../resourceGroups/.../providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-identity'
}
]Answer - ingress: {
external: true
targetPort: 8080
transport: 'http2'
}Answer - Cregistries: [
{
server: 'myregistry.azurecr.io'
identity: 'system'
}
] - Dingress: {
public: true
port: 8080
protocol: 'http2'
}