Skip to content

Azure IoT Hub enables public network access

Description

By ensuring that your IoT Hub is not public, you can help protect your data from unauthorized access or tampering. Public IoT Hubs are accessible over the internet, which can make them vulnerable to external threats such as hackers or malware. By making it private, you can help ensure that only authorized users can access the data.

Code Example

go
resource "azurerm_iothub" "example" {
                ...
+             public_network_access_enabled = false
              route {
                name           = "export"
                source         = "DeviceMessages"
                condition      = "true"
                endpoint_names = ["export"]
                enabled        = true
              }
                        ...
            }

Remediation

Terraform

  • Resource: azurerm_iothub
  • Arguments: public_network_access_enabled

Rule Details

FieldValue
IDIAC-0615
SeverityMEDIUM
IaC TypeTerraform
FrameworksTerraform,
Checkov IDCKV_AZURE_108

References