Scenarios/AKS-Secure-Baseline-PrivateCluster/Terraform/05-AKS-Supporting/providers.tf (24 lines of code) (raw):
terraform {
required_version = "~> 1.6"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.74"
}
http = {
source = "hashicorp/http"
version = "~> 3.4"
}
random = {
source = "hashicorp/random"
version = "~> 3.5"
}
}
}
provider "azurerm" {
features {
resource_group {
prevent_deletion_if_contains_resources = false
}
}
}