·
16 commits
to main
since this release
Major Changes
-
6b2d5bc: # 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 Exposed.
To migrate to this new major version:
- Update the module version to
~> 2.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 Exposed.
For Example:
-
Before
module "function_app_exposed" { source = "pagopa-dx/azure-function-app-exposed/azurerm" version = "~> 1.0" tier = "l" # ...other variables... }
-
After
module "function_app_exposed" { source = "pagopa-dx/azure-function-app-exposed/azurerm" version = "~> 2.0" use_case = "default" # ...other variables remain unchanged... }
- Replace the