This is a repo for Container Apps in the style of Azure Verified Modules (AVM), for official AVM modules, please see https://aka.ms/AVM.
Whilst this uses the AzApi provider, a key design pattern is to standardarise the variable definition so it is as close to the existing AzureRM resource as possible (augmenting as needed to support parameters that are currently not supported by the AzureRM provider).
Currently implemented parameters cover;
- dapr
- container
- ingress
- probes (liveness, readiness & startup)
- secrets
- registries
Warning
Major version Zero (0.y.z) is for initial development. Anything MAY change at any time. A module SHOULD NOT be considered stable till at least it is major version one (1.0.0) or greater. Changes will always be via new versions being published and no changes will be made to existing published versions. For more details please go to https://semver.org/
This project was originally written because the AzAPI provider was missing within the AzureRM provider for workload profiles.
This can be converted using azapi2azurerm once Container Apps support stablises in the Azure RM provider.
This project includes examples showing default settings and an example from Microsoft Learn illustrating Dapr.
The following requirements are needed by this module:
The following providers are used by this module:
The following resources are used by this module:
- azapi_resource.container_app (resource)
- azurerm_management_lock.this (resource)
- azurerm_resource_group_template_deployment.telemetry (resource)
- azurerm_role_assignment.this (resource)
- random_id.telem (resource)
- azurerm_resource_group.rg (data source)
The following input variables are required:
Description: The ID of the Container App Environment to host this Container App.
Type: string
Description: The name of the Container App.
Type: string
Description: (Required) The name of the resource group in which the Container App Environment is to be created. Changing this forces a new resource to be created.
Type: string
Description:
Template properties:
maxReplicas
- (Optional) The maximum number of replicas for this container.minReplicas
- (Optional) The minimum number of replicas for this container.revisionSuffix
- (Optional) The suffix for the revision. This value must be unique for the lifetime of the Resource. If omitted the service will use a hash function to create one.
containers
block supports the following:
args
- (Optional) A list of extra arguments to pass to the container.command
- (Optional) A command to pass to the container to override the default. This is provided as a list of command line elements without spaces.cpu
- (Required) The amount of vCPU to allocate to the container. Possible values include0.25
,0.5
,0.75
,1.0
,1.25
,1.5
,1.75
, and2.0
.image
- (Required) The image to use to create the container.memory
- (Required) The amount of memory to allocate to the container. Possible values are0.5Gi
,1Gi
,1.5Gi
,2Gi
,2.5Gi
,3Gi
,3.5Gi
, and4Gi
.name
- (Required) The name of the container.env
- (Optional) List of environment variables for the container.name
- (Required) The name of the environment variable for the container.secret_name
- (Optional) The name of the secret that contains the value for this environment variable.value
- (Optional) The value for this environment variable.
liveness_probe
- (Optional) List of liveness probes for the container.failure_count_threshold
- (Optional) The number of consecutive failures required to consider this probe as failed. Possible values are between1
and10
. Defaults to3
.host
- (Optional) The probe hostname. Defaults to the pod IP address. Setting a value forHost
inheaders
can be used to override this forHTTP
andHTTPS
type probes.initial_delay
- (Optional) The time in seconds to wait after the container has started before the probe is started.interval_seconds
- (Optional) How often, in seconds, the probe should run. Possible values are in the range1
.path
- (Optional) The URI to use for http type probes. Not valid forTCP
type probes. Defaults to/
.port
- (Required) The port number on which to connect. Possible values are between1
and65535
.termination_grace_period_seconds
- The time in seconds after the container is sent the termination signal before the process if forcibly killed.timeout
- (Optional) Time in seconds after which the probe times out. Possible values are in the range1
.transport
- (Required) Type of probe. Possible values areTCP
,HTTP
, andHTTPS
.header
- (Optional) List of HTTP headers for the probe.name
- (Required) The HTTP Header Name.value
- (Required) The HTTP Header value.
readiness_probe
- (Optional) List of readiness probes for the container.failure_count_threshold
- (Optional) The number of consecutive failures required to consider this probe as failed. Possible values are between1
and10
. Defaults to3
.success_count_threshold
- (Optional) The number of consecutive successful responses required to consider this probe as successful. Possible values are between1
and10
. Defaults to3
.host
- (Optional) The probe hostname. Defaults to the pod IP address. Setting a value forHost
inheaders
can be used to override this forHTTP
andHTTPS
type probes.initial_delay
- (Optional) The time in seconds to wait after the container has started before the probe is started.interval_seconds
- (Optional) How often, in seconds, the probe should run. Possible values are in the range1
.path
- (Optional) The URI to use for http type probes. Not valid forTCP
type probes. Defaults to/
.port
- (Required) The port number on which to connect. Possible values are between1
and65535
.timeout
- (Optional) Time in seconds after which the probe times out. Possible values are in the range1
.transport
- (Required) Type of probe. Possible values areTCP
,HTTP
, andHTTPS
.header
- (Optional) List of HTTP headers for the probe.name
- (Required) The HTTP Header Name.value
- (Required) The HTTP Header value.
startup_probe
- (Optional) List of readiness probes for the container.failure_count_threshold
- (Optional) The number of consecutive failures required to consider this probe as failed. Possible values are between1
and10
. Defaults to3
.host
- (Optional) The probe hostname. Defaults to the pod IP address. Setting a value forHost
inheaders
can be used to override this forHTTP
andHTTPS
type probes.initial_delay
- (Optional) The time in seconds to wait after the container has started before the probe is started.interval_seconds
- (Optional) How often, in seconds, the probe should run. Possible values are in the range1
.path
- (Optional) The URI to use for http type probes. Not valid forTCP
type probes. Defaults to/
.port
- (Required) The port number on which to connect. Possible values are between1
and65535
.termination_grace_period_seconds
- The time in seconds after the container is sent the termination signal before the process if forcibly killed.timeout
- (Optional) Time in seconds after which the probe times out. Possible values are in the range1
.transport
- (Required) Type of probe. Possible values areTCP
,HTTP
, andHTTPS
.header
- (Optional) List of HTTP headers for the probe.name
- (Required) The HTTP Header Name.value
- (Required) The HTTP Header value.
Type:
object({
max_replicas = optional(number)
min_replicas = optional(number)
revision_suffix = optional(string, null)
container = list(object({
args = optional(list(string))
command = optional(list(string))
cpu = number
image = string
memory = string
name = string
env = optional(list(object({
name = string
secret_name = optional(string)
value = optional(string)
})))
liveness_probe = optional(list(object({
failure_count_threshold = optional(number)
host = optional(string)
initial_delay = optional(number)
interval_seconds = optional(number)
path = optional(string)
port = number
termination_grace_period_seconds = optional(number)
timeout = optional(number)
transport = string
header = optional(list(object({
name = string
value = string
})))
})), [])
readiness_probe = optional(list(object({
failure_count_threshold = optional(number)
success_count_threshold = optional(number)
host = optional(string)
interval_seconds = optional(number)
path = optional(string)
port = number
timeout = optional(number)
transport = string
header = optional(list(object({
name = string
value = string
})))
})), [])
startup_probe = optional(list(object({
failure_count_threshold = optional(number)
host = optional(string)
interval_seconds = optional(number)
path = optional(string)
port = number
termination_grace_period_seconds = optional(number)
timeout = optional(number)
transport = string
header = optional(list(object({
name = string
value = string
})))
})), [])
volume_mounts = optional(list(object({
name = optional(string)
path = optional(string)
sub_path = optional(string)
})))
}))
})
The following input variables are optional (have default values):
Description: - app_id
- (Optional) The Dapr Application Identifier.
app_port
- (Optional) The port which the application is listening on. This is the same as theingress
port.app_protocol
- (Optional) The protocol for the app. Possible values includehttp
andgrpc
. Defaults tohttp
.enable_api_logging
- (Optional) Enable API logging. Defaults tofalse
.enabled
- (Optional) Enable Dapr for the application. Defaults tofalse
.http_max_request_size
- (Optional) The maximum allowed HTTP request size in bytes.http_read_buffer_size
- (Optional) The size of the buffer used for reading the HTTP request body in bytes.log_level
- (Optional) The log level for Dapr. Possible values include "debug", "info", "warn", "error", and "fatal".
Type:
object({
app_id = optional(string)
app_port = optional(number)
app_protocol = optional(string, "http")
enable_api_logging = optional(bool, false)
enabled = optional(bool, false)
http_max_request_size = optional(number)
http_read_buffer_size = optional(number)
log_level = optional(string)
})
Default: null
Description: This variable controls whether or not telemetry is enabled for the module.
For more information see https://aka.ms/avm/telemetryinfo.
If it is set to false, then no telemetry will be collected.
Type: bool
Default: false
Description: This object defines the ingress properties for the container app:
allow_insecure_connections
- (Optional) Should this ingress allow insecure connections? Defaults tofalse
.client_certificate_mode
- (Optional) The mode for client certificate authentication. Possible values includeoptional
andrequired
. Defaults toIgnore
.exposed_port
- (Optional) The exposed port on the container for the Ingress traffic. Defaults to0
.external_enabled
- (Optional) Are connections to this Ingress from outside the Container App Environment enabled? Defaults tofalse
.target_port
- (Required) The target port on the container for the Ingress traffic. Defaults toAuto
.transport
- (Optional) The transport method for the Ingress. Possible values includeauto
,http
,http2
, andtcp
. Defaults toAuto
.
cors_policy
block supports the following:
allow_credentials
- (Optional) Indicates whether the browser should include credentials when making a request. Defaults tofalse
.allowed_headers
- (Optional) List of headers that can be used when making the actual request.allowed_methods
- (Optional) List of HTTP methods that can be used when making the actual request.allowed_origins
- (Optional) List of origins that are allowed to access the resource.expose_headers
- (Optional) List of response headers that can be exposed when making the actual request.max_age
- (Optional) The maximum number of seconds the results of a preflight request can be cached.
custom_domain
block supports the following:
certificate_binding_type
- (Optional) The Binding type. Possible values includeDisabled
andSniEnabled
. Defaults toDisabled
.certificate_id
- (Optional) The ID of the Container App Environment Certificate.name
- (Optional) The hostname of the Certificate. Must be the CN or a named SAN in the certificate.
ip_restrictions
block supports the following:
action
- (Optional) The action to take when the IP security restriction is triggered. Possible values includeallow
anddeny
.description
- (Optional) A description for the IP security restriction.ip_range
- (Optional) The IP address range for the security restriction.name
- (Optional) The name for the IP security restriction.
sticky_sessions
block supports the following:
affinity
- (Optional) The affinity type for sticky sessions. Possible values includeNone
,ClientIP
, andServer
.
traffic_weight
block supports the following:
label
- (Optional) The label to apply to the revision as a name prefix for routing traffic.latest_revision
- (Optional) This traffic Weight relates to the latest stable Container Revision.revision_suffix
- (Optional) The suffix string to which thistraffic_weight
applies.percentage
- (Required) The percentage of traffic which should be sent according to this configuration.
Type:
object({
allow_insecure_connections = optional(bool, false)
client_certificate_mode = optional(string, "Ignore")
cors_policy = optional(object({
allow_credentials = optional(bool, false)
allowed_headers = optional(list(string))
allowed_methods = optional(list(string))
allowed_origins = optional(list(string))
expose_headers = optional(list(string))
max_age = optional(number)
}), null)
custom_domain = optional(list(object({
certificate_binding_type = optional(string)
certificate_id = optional(string)
name = optional(string)
})), null)
exposed_port = optional(number, 0)
external_enabled = optional(bool, false)
ip_restrictions = optional(list(object({
action = optional(string)
description = optional(string)
ip_range = optional(string)
name = optional(string)
})))
sticky_sessions = optional(object({
affinity = optional(string, "none")
}))
target_port = optional(number)
traffic_weight = optional(list(object({
label = optional(string)
latest_revision = optional(bool, true)
revision_suffix = optional(string)
percentage = optional(number, 100)
})))
transport = optional(string, "Auto")
})
Default: null
Description: Azure region where the resource should be deployed. If null, the location will be inferred from the resource group location.
Type: string
Default: null
Description: The lock level to apply to the resource. Default is None
. Possible values are None
, CanNotDelete
, and ReadOnly
.
Type:
object({
name = optional(string, null)
kind = optional(string, "None")
})
Default: {}
Description: Configurations for managed identities in Azure. This variable allows you to specify both system-assigned and user-assigned managed identities for resources that support identity-based authentication.
system_assigned
- (Optional) A boolean flag indicating whether to enable the system-assigned managed identity. Defaults tofalse
.user_assigned_resource_ids
- (Optional) A set of user-assigned managed identity resource IDs to be associated with the resource.
Type:
object({
system_assigned = optional(bool, false)
user_assigned_resource_ids = optional(set(string), [])
})
Default: {}
Description: (Optional). Max inactive revisions a Container App can have.
Type: number
Default: 2
Description:
identity
- (Optional) Resource ID for the User Assigned Managed identity to use when pulling from the Container Registry.password_secret_name
- (Optional) The name of the Secret Reference containing the password value for this user on the Container Registry,username
must also be supplied.server
- (Optional) The hostname for the Container Registry.username
- (Optional) The username to use for this Container Registry,password_secret_name
must also be supplied.
Type:
list(object({
identity = optional(string)
password_secret_name = optional(string)
server = optional(string)
username = optional(string)
}))
Default: null
Description: (Required) The revisions operational mode for the Container App. Possible values include Single
and Multiple
. In Single
mode, a single revision is in operation at any given time. In Multiple
mode, more than one revision can be active at a time and can be configured with load distribution via the traffic_weight
block in the ingress
configuration.
Type: string
Default: "Single"
Description: A map of role assignments to create on the Container Registry. The map key is deliberately arbitrary to avoid issues where map keys maybe unknown at plan time.
-
role_definition_id_or_name
- The ID or name of the role definition to assign to the principal. -
principal_id
- The ID of the principal to assign the role to. -
description
- The description of the role assignment. -
skip_service_principal_aad_check
- If set to true, skips the Azure Active Directory check for the service principal in the tenant. Defaults to false. -
condition
- The condition which will be used to scope the role assignment. -
condition_version
- The version of the condition syntax. Valid values are '2.0'.Note: only set
skip_service_principal_aad_check
to true if you are assigning a role to a service principal.
Type:
map(object({
role_definition_id_or_name = string
principal_id = string
description = optional(string, null)
skip_service_principal_aad_check = optional(bool, false)
condition = optional(string, null)
condition_version = optional(string, null)
delegated_managed_identity_resource_id = optional(string, null)
}))
Default: {}
Description:
key_vault_secret_id
- (Optional) The URL of the Azure Key Vault containing the secret. Required whenidentity
is specified.identity
- (Optional) The identity associated with the secret.name
- (Required) The Secret name.value
- (Required) The value for this secret.
Type:
set(object({
identity = optional(string)
key_vault_secret_id = optional(string)
name = string
value = string
}))
Default: null
Description: Custom tags to apply to the resource.
Type: map(string)
Default: {}
Description: - create
- (Defaults to 30 minutes) Used when creating the Container App.
delete
- (Defaults to 30 minutes) Used when deleting the Container App.read
- (Defaults to 5 minutes) Used when retrieving the Container App.update
- (Defaults to 30 minutes) Used when updating the Container App.
Type:
object({
create = optional(string)
delete = optional(string)
read = optional(string)
update = optional(string)
})
Default: null
Description: Workload profile name to pin for container app execution. If not set, workload profiles are not used.
Type: string
Default: null
The following outputs are exported:
Description: The ID of the Container App.
Description: The name of the Container App.
Description: The Container App resource.
No modules.
The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.