Skip to content

v0.11.0

Compare
Choose a tag to compare
@donovm4 donovm4 released this 23 Oct 20:27
· 3 commits to main since this release
8ca61f0

Breaking Change(s)

PLEASE READ! Includes VERY IMPORTANT Breaking Changes

  • module no longer supports the creation and management of App Service Plan
    • removed the following variables:
      • create_service_plan
      • new_service_plan
    • removed related outputs:
      • service_plan
      • service_plan_id
      • service_plan_name

Users will need to reference an app service plan using service_plan_resource_id, thus making it a required input.

  • module no longer supports the creation and management of Storage Account for Function App
    • removed the following variables:
      • function_app_create_storage_account
      • function_app_storage_account
      • function_app_storage_account_access_key
      • function_app_storage_account_inherit_lock
      • function_app_storage_account_name
      • function_app_storage_uses_managed_identity
    • removed related outputs:
      • storage_account
      • storage_account_lock

Users can still supply an existing storage account using storage_account_access_key (or storage_uses_managed_identity) and storage_account_name.

  • Terraform minimum required version raised to 1.9

Feature(s)

None

Update(s)

  • fix: addressing Issue #120 where azurerm_windows_function_app site config was missing ip_restriction_default_action and scm_ip_restriction_default_action
  • improvements variable documentation