From f87bd53041c3a12a2e8a15b7af6f8b1fbe52f23a Mon Sep 17 00:00:00 2001 From: stephybun Date: Thu, 22 Aug 2024 11:50:57 +0200 Subject: [PATCH] remove immutable_backups_enabled from mssql docs (#27136) --- website/docs/guides/4.0-upgrade-guide.html.markdown | 8 ++++++++ website/docs/r/mssql_database.html.markdown | 1 - website/docs/r/mssql_managed_database.html.markdown | 1 - 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/website/docs/guides/4.0-upgrade-guide.html.markdown b/website/docs/guides/4.0-upgrade-guide.html.markdown index 877ccc7becba..c1dbe08e25a0 100644 --- a/website/docs/guides/4.0-upgrade-guide.html.markdown +++ b/website/docs/guides/4.0-upgrade-guide.html.markdown @@ -924,6 +924,14 @@ The deprecated data source has been superseded by `azurerm_mssql_server` and has * The deprecated `metric.retention_policy` block has been removed in favour of the `azurerm_storage_management_policy` resource. * The deprecated `log` block has been removed in favour of the `enabled_log` block. +### `azurerm_mssql_managed_database` + +* The `long_term_retention_policy.immutable_backups_enabled` property has been removed due to a breaking SDK upgrade. + +### `azurerm_mssql_database` + +* The `long_term_retention_policy.immutable_backups_enabled` property has been removed due to a breaking SDK upgrade. + ### `azurerm_netapp_pool` * The `qos_type` property now defaults to `Auto`. diff --git a/website/docs/r/mssql_database.html.markdown b/website/docs/r/mssql_database.html.markdown index b3dad69e734b..d1ad2bbf0043 100644 --- a/website/docs/r/mssql_database.html.markdown +++ b/website/docs/r/mssql_database.html.markdown @@ -294,7 +294,6 @@ A `long_term_retention_policy` block supports the following: * `monthly_retention` - (Optional) The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. `P1Y`, `P1M`, `P4W` or `P30D`. * `yearly_retention` - (Optional) The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. `P1Y`, `P12M`, `P52W` or `P365D`. * `week_of_year` - (Optional) The week of year to take the yearly backup. Value has to be between `1` and `52`. -* `immutable_backups_enabled` - (Optional) Specifies if the backups are immutable. Defaults to `false`. --- diff --git a/website/docs/r/mssql_managed_database.html.markdown b/website/docs/r/mssql_managed_database.html.markdown index c84de00d3975..4b95e8185d65 100644 --- a/website/docs/r/mssql_managed_database.html.markdown +++ b/website/docs/r/mssql_managed_database.html.markdown @@ -82,7 +82,6 @@ A `long_term_retention_policy` block supports the following: * `monthly_retention` - (Optional) The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. `P1Y`, `P1M`, `P4W` or `P30D`. * `yearly_retention` - (Optional) The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. `P1Y`, `P12M`, `P52W` or `P365D`. * `week_of_year` - (Optional) The week of year to take the yearly backup. Value has to be between `1` and `52`. -* `immutable_backups_enabled` - (Optional) Specifies if the backups are immutable. Defaults to `false`. ---