·
16 commits
to main
since this release
Major Changes
-
06c22a0: # Major Changes
- Replace the
tier
variable with a newuse_case
variable for tiering configuration. - Add new variables
size
for sku override. - Added README documentation.
Upgrade Notes
Old Value New Value Description s none Does not exist anymore m none Does not exist anymore l default Ideal for production
environmentsxl high_load Ideal for high_load
scenariosxxl none Does not exist anymore This change simplifies and clarifies the selection of Function 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 create the desired SKU within the Function App.
For Example:
-
Before
module "function_app" { source = "pagopa-dx/azure-function-app/azurerm" version = "~> 3.0" tier = "l" # ...other variables... }
-
After
module "function_app" { source = "pagopa-dx/azure-function-app/azurerm" version = "~> 4.0" use_case = "default" # ...other variables remain unchanged... }
- Replace the