Terraform changed how the provider.tf file is written. Here is what I had to change it to in order for it to work ``` terraform { required_providers { azurerm = { source = "hashicorp/azurerm" version = "3.46.0" } } } provider "azurerm" { features {} } ```
Terraform changed how the provider.tf file is written. Here is what I had to change it to in order for it to work