From df6b78048369ea0e0c36e8b4136a87b0ad4e31ac Mon Sep 17 00:00:00 2001 From: Tom Harvey Date: Thu, 11 Feb 2021 20:51:32 +0100 Subject: [PATCH] updating to include #10488 --- CHANGELOG.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 262a35307668..412d4af667e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,11 @@ UPGRADE NOTES -* `azurerm_linux_virtual_machine_scale_set` & `azurerm_windows_virtual_machine_scale_set` - the in-line `extension` block is now GA - the environment variable `ARM_PROVIDER_VMSS_EXTENSIONS_BETA` no longer has any effect and can be removed [GH-10528] * `azurerm_frontdoor` & `azurerm_frontdoor_custom_https_configuration` - the new fields `backend_pool_health_probes`, `backend_pool_load_balancing_settings`, `backend_pools`, `frontend_endpoints`, `routing_rules` have been added to the `azurerm_frontdoor` resource, which are a map of name-ID references. An upcoming version of the Azure Provider will change the blocks `backend_pool`, `backend_pool_health_probe`, `backend_pool_load_balancing`, `frontend_endpoint` and `routing_rule` from a List to a Set to work around an ordering issue within the Azure API - as such you should update your Terraform Configuration to reference these new Maps, rather than the Lists directly, due to the upcoming breaking change. For example, changing `azurerm_frontdoor.example.frontend_endpoint[1].id` to `azurerm_frontdoor.example.frontend_endpoints["exampleFrontendEndpoint2"]` [GH-9357] +* `azurerm_lb_backend_address_pool` - the field `backend_addresses` has been deprecated and is no longer functional - instead the `azurerm_lb_backend_address_pool_address` resource offers the same functionality. [GH-10488] +* `azurerm_linux_virtual_machine_scale_set` & `azurerm_windows_virtual_machine_scale_set` - the in-line `extension` block is now GA - the environment variable `ARM_PROVIDER_VMSS_EXTENSIONS_BETA` no longer has any effect and can be removed [GH-10528] +* `azurerm_data_factory_integration_runtime_managed` - this resource has been renamed/deprecated in favour of `azurerm_data_factory_integration_runtime_azure_ssis` [GH-10236] * The provider-block field `skip_credentials_validation` is now deprecated since this was non-functional and will be removed in 3.0 of the Azure Provider [GH-10464] -* the `azurerm_data_factory_integration_runtime_managed` resource has been renamed/deprecated in favour of `azurerm_data_factory_integration_runtime_azure_ssis` [GH-10236] FEATURES: @@ -13,6 +14,7 @@ FEATURES: * **New Resource:** `azurerm_application_insights_smart_detection_rule` [GH-10539] * **New Resource:** `azurerm_data_factory_integration_runtime_azure` [GH-10236] * **New Resource:** `azurerm_data_factory_integration_runtime_azure_ssis` [GH-10236] +* **New Resource:** `azurerm_lb_backend_address_pool_address` [GH-10488] ENHANCEMENTS: @@ -36,6 +38,7 @@ BUG FIXES: * `azurerm_cosmosdb_account` - will no longer panic if the response is nil [GH-10525] * `azurerm_eventhub_namespace` - correctly downgrade to the `Basic` sku [GH-10536] * `azurerm_key_vault_key` - export the `versionless_id` attribute [GH-10420] +* `azurerm_lb_backend_address_pool` - the `backend_addresses` block is now deprecated and non-functional - use the `azurerm_lb_backend_address_pool_address` resource instead [GH-10488] * `azurerm_linux_virtual_machine_scale_set` - fixing a bug when `protected_settings` within the `extension` block was an empty string [GH-10528] * `azurerm_linux_virtual_machine_scale_set` - fixing a bug when `settings` within the `extension` block was an empty string [GH-10528] * `azurerm_monitor_diagnostic_setting` - changing the `log_analytics_workspace_id` property no longer creates a new resource [GH-10512]