Azure Container Apps
An Azure service that provides a general-purpose, serverless container platform.
419 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Need help with bicep module when when i set up container apps, how to control the value of the revision mode parameter, where the default value here is multiple, but then i need it to be set to single. getting error with this code-
properties: {
managedEnvironmentId: containerAppEnvId
configuration: {
activeRevisionsMode: revisionmode == 'Multiple' ? 'Multiple' : 'Single'
secrets: (!empty(secret)) ? secret : null
ingress: {
external: externalapp
targetPort: targetPort
allowInsecure: false
traffic: [
{
latestRevision: true
weight: 100 // set weight to 100 for all cases
}
]
ipSecurityRestrictions: ipSecurityRestrictions
}