Skip to content

Commit

Permalink
fix deprecated argument
Browse files Browse the repository at this point in the history
  • Loading branch information
lonegunmanb committed Sep 30, 2024
1 parent 0525962 commit 77bc7ba
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ terraform {
}

provider "azurerm" {
features {}
features {
resource_group {
prevent_deletion_if_contains_resources = false
}
}
}

data "azurerm_client_config" "current" {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,9 @@ terraform {
}

provider "azurerm" {
features {}
features {
resource_group {
prevent_deletion_if_contains_resources = false
}
}
}

0 comments on commit 77bc7ba

Please sign in to comment.