Skip to content

Azure Cognitive Search Without Managed Identities

Description

Code Example

terraform
resource "azurerm_search_service" "example" {
  name                = "example-search-service"
  # ... other configurations ...

+ identity {
+   type = "SystemAssigned"
+ }

  # ... other configurations ...
}

Remediation

Terraform

Resource:

  • azurerm_search_service

Arguments:

  • identity

Rule Details

FieldValue
IDIAC-0714
SeverityMEDIUM
IaC TypeTerraform
FrameworksTerraform,
Checkov IDCKV_AZURE_207

References