fix deprecated argument

This commit is contained in:
zjhe 2024-09-30 11:03:15 +08:00
parent 0525962b23
commit 77bc7ba583
2 changed files with 10 additions and 2 deletions

View File

@ -19,7 +19,11 @@ terraform {
} }
provider "azurerm" { provider "azurerm" {
features {} features {
resource_group {
prevent_deletion_if_contains_resources = false
}
}
} }
data "azurerm_client_config" "current" {} data "azurerm_client_config" "current" {}

View File

@ -14,5 +14,9 @@ terraform {
} }
provider "azurerm" { provider "azurerm" {
features {} features {
resource_group {
prevent_deletion_if_contains_resources = false
}
}
} }