エラー発生
こんなconfigファイルを使っているとエラーが出るようになりました
azure.tf
provider "azurerm" {
}
Error: "features": required field is not set
原因
Provider Block: The Azure Provider now requires that a features block is specified within the Provider block, which can be used to alter the behaviour of certain resources
2020-02-24にリリースされた AzureRM provider v2.0.0
で必須ブロックが増えたようです。
解決方法
azure.tf
provider "azurerm" {
features {}
}
空で良いので features
ブロックを追加しましょう。
参考