Configuration Class
Non versioned Container App configuration properties that define the mutable settings of a Container app.
Constructor
Configuration()
Variables
| Name | Description |
|---|---|
|
secrets
|
list[<xref:"Secret">]
Collection of secrets used by a Container app. |
|
active_revisions_mode
|
Controls how active revisions are handled for the Container app. Known values are: "Multiple" and "Single". |
|
ingress
|
<xref:<xref:"Ingress">>
Ingress configurations. |
|
registries
|
list[<xref:"RegistryCredentials">]
Collection of private container registry credentials for containers used by the Container app. |
|
dapr
|
<xref:<xref:"Dapr">>
Dapr configuration for the Container App. |
|
runtime
|
<xref:<xref:"Runtime">>
App runtime configuration for the Container App. |
|
max_inactive_revisions
|
Optional. Max inactive revisions a Container App can have. |
|
service
|
<xref:<xref:"Service">>
Container App to be a dev Container App Service. |
|
identity_settings
|
list[<xref:"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. |
Attributes
activeRevisionsMode
"Multiple" and "Single".
activeRevisionsMode: str | ActiveRevisionsMode
dapr
Dapr configuration for the Container App.
dapr: Dapr
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.
identitySettings: list['IdentitySettings']
ingress
Ingress configurations.
ingress: Ingress
maxInactiveRevisions
Optional. Max inactive revisions a Container App can have.
maxInactiveRevisions: int
registries
Collection of private container registry credentials for containers used by the Container app.
registries: list['RegistryCredentials']
runtime
App runtime configuration for the Container App.
runtime: Runtime
secrets
Collection of secrets used by a Container app.
secrets: list['Secret']
service
Container App to be a dev Container App Service.
service: Service