Package version:

Non versioned Container App configuration properties that define the mutable settings of a Container app

interface Configuration {
    activeRevisionsMode?: string;
    dapr?: Dapr;
    identitySettings?: IdentitySettings[];
    ingress?: Ingress;
    maxInactiveRevisions?: number;
    registries?: RegistryCredentials[];
    runtime?: Runtime;
    secrets?: Secret[];
    service?: Service;
}

Properties

activeRevisionsMode?: string

ActiveRevisionsMode controls how active revisions are handled for the Container app: Multiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.

dapr?: Dapr

Dapr configuration for the Container App.

identitySettings?: IdentitySettings[]

Optional settings for Managed Identities that are assigned to the Container App. If a Managed Identity is not specified here, default settings will be used.

ingress?: Ingress

Ingress configurations.

maxInactiveRevisions?: number

Optional. Max inactive revisions a Container App can have.

registries?: RegistryCredentials[]

Collection of private container registry credentials for containers used by the Container app

runtime?: Runtime

App runtime configuration for the Container App.

secrets?: Secret[]

Collection of secrets used by a Container app

service?: Service

Container App to be a dev Container App Service