·
10 commits
to main
since this release
Major Changes
-
a0eb678: # Major Changes
- Replace the
tier
variable with a newuse_case
variable for tiering configuration. - Add new variables
size
for cpu/memory override. - Update README documentation.
- Update
autoscaler
variable to include minimum and maximum replica limits. If these are not defined, they default tonull
and the values from theuse_case
will be applied.
Upgrade Notes
Old Value New Value Description xs none Does not exist anymore s none Does not exist anymore m default Ideal for production
environmentsl none Does not exist anymore This change simplifies and clarifies the selection of Container App.
To migrate to this new major version:
- Update the module version to
~> 4.0
in your Terraform configuration. - Update your
module
configuration to use the newuse_case
variable instead oftier
. - Optionally, configure the new
size
variable to use the desired CPU/Memory configuration within the Container App.
For Example:
-
Before
module "container_app" { source = "pagopa-dx/azure-container-app/azurerm" version = "~> 3.0" tier = "m" # ...other variables... }
-
After
module "container_app" { source = "pagopa-dx/azure-container-app/azurerm" version = "~> 4.0" use_case = "default" # ...other variables remain unchanged... }
- Replace the
Patch Changes
- 329fd82: Added support to aws provider version 6