Insufficient features blocks

Hi,
I am new to terraform azure provider. I have followed the steps in the documentation but kept getting this error
Error: Insufficient features blocks

│ on line 0:
│ (source code not available)

│ At least 1 “features” blocks are required.

I do not know what i am missing. Here is my provider block

Setup

terraform {
required_version = “>= 1.0.0”
required_providers {
azurerm = {
source = “hashicorp/azurerm”
version = “~> 3”
}
}
backend “remote” {
hostname = “app.terraform.io
organization = “test”
workspaces {
name = “test”
}
}
}

provider “azurerm” {
features {}
}