Skip to content

Azure Service Bus Without Managed Identity Provider

Description

Code Example

terraform
resource "azurerm_servicebus_namespace" "example" {
  name                = "example-namespace"
  # ... other configurations ...

+ identity {
+   type = "SystemAssigned"
+ }

  # ... other configurations ...
}

Remediation

Terraform

Resource:

  • azurerm_servicebus_namespace

Arguments:

  • identity

Rule Details

FieldValue
IDIAC-0709
SeverityMEDIUM
IaC TypeTerraform
FrameworksTerraform,
Checkov IDCKV_AZURE_202

References