terraform error │ > API version 2019-XX-XX was not found for Microsoft.Foo ` │ Original Error: determining which Required Resource Providers require registration: the required Resource Provider "Microsoft.TimeSeriesInsights" wasn't returned from the Azure API
Bump into this error today,
│ > API version 2019-XX-XX was not found for Microsoft.Foo
│ Original Error: determining which Required Resource Providers require registration: the required Resource Provider "Microsoft.TimeSeriesInsights" wasn't returned from the Azure API
To resolve this, we can either update the azurerm provider to a more recent version or
provider "azurerm" {
features {}
skip_provider_registration = true
}
Comments