You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When attempting to use the lacework/agentless-scanning/azure module for Azure agentless scanning, I encountered an error related to the Microsoft.TimeSeriesInsights resource provider. It appears that this provider has been retired by Azure, and cannot proceed with running the module.
Create a main.tf with the following configuration:
module "lacework_azure_agentless_scanning_subscription_us_west" {
source = "lacework/agentless-scanning/azure"
integration_level = "SUBSCRIPTION"
global = true
create_log_analytics_workspace = true
region = "West US"
scanning_subscription_id = "123456789"
tenant_id = "a3fdfdfdfdffddfbdfbdb"
}
Run the following command:
terraform init
terraform apply
Error: "Microsoft.TimeSeriesInsights" resource provider not returned from the Azure API.
Expected behavior
The module should run without referencing any retired or deprecated Azure resource providers..
Screenshots
Please complete the following information):
Terraform Version: [v1.9.5 ]
Module Version [e.g. v0.13]
Additional context
I verified that there are no direct references to Microsoft.TimeSeriesInsights in the module code, and it seems to be a legacy or indirect dependency.
The text was updated successfully, but these errors were encountered:
Describe the bug
When attempting to use the lacework/agentless-scanning/azure module for Azure agentless scanning, I encountered an error related to the Microsoft.TimeSeriesInsights resource provider. It appears that this provider has been retired by Azure, and cannot proceed with running the module.
https://azure.microsoft.com/en-us/updates/we-re-retiring-azure-time-series-insights-on-7-july-2024-transition-to-azure-data-explorer/
Steps to reproduce
Create a main.tf with the following configuration:
module "lacework_azure_agentless_scanning_subscription_us_west" {
source = "lacework/agentless-scanning/azure"
integration_level = "SUBSCRIPTION"
global = true
create_log_analytics_workspace = true
region = "West US"
scanning_subscription_id = "123456789"
tenant_id = "a3fdfdfdfdffddfbdfbdb"
}
Run the following command:
terraform init
terraform apply
Error: "Microsoft.TimeSeriesInsights" resource provider not returned from the Azure API.
Expected behavior
The module should run without referencing any retired or deprecated Azure resource providers..
Screenshots
Please complete the following information):
Additional context
I verified that there are no direct references to Microsoft.TimeSeriesInsights in the module code, and it seems to be a legacy or indirect dependency.
The text was updated successfully, but these errors were encountered: