Given the following Terraform configuration snippet, what ve…
Given the following Terraform configuration snippet, what versions of the azurerm provider will satisfy the version = “=4.1.0” constraint? # We strongly recommend using the required_providers block to set the# Azure Provider source and version being usedterraform { required_providers { azurerm = { source = “hashicorp/azurerm” version = “=4.1.0” } }} # Configure the Microsoft Azure Providerprovider “azurerm” { features {}}