Skip to content

Choose a tag to compare

@dx-pagopa-bot dx-pagopa-bot released this 13 Oct 13:18
· 16 commits to main since this release
ae37f15

Major Changes

  • fe1260b: # Major Changes

    1. Replace the tier variable with a new use_case variable for tiering configuration.
    2. Add new variables size for sku override.

    Upgrade Notes

    Old Value New Value Description
    xs none Does not exist anymore
    s none Does not exist anymore
    m none Does not exist anymore
    l default Ideal for production environments
    xl high_load Ideal for high_load scenarios

    This change simplifies and clarifies the selection of App Service exposed.

    To migrate to this new major version:

    1. Update the module version to ~> 2.0 in your Terraform configuration.
    2. Update your module configuration to use the new use_case variable instead of tier.
    3. Optionally, configure the new size variable to create the desired SKU within the App Service.

    For Example:

    • Before

      module "app_service" {
        source  = "pagopa-dx/azure-app-service-exposed/azurerm"
        version = "~> 1.0"
        tier    = "l"
        # ...other variables...
      }
    • After

      module "app_service" {
        source  = "pagopa-dx/azure-app-service-exposed/azurerm"
        version = "~> 2.0"
        use_case = "default"
        # ...other variables remain unchanged...
      }