From 44d0a2f374d267d2631411037144c5736c506e92 Mon Sep 17 00:00:00 2001 From: James Woolfenden Date: Wed, 18 Oct 2023 14:41:53 +0100 Subject: [PATCH] git messed up --- .../checks/resource/azure/EventHubNamespaceZoneRedundant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checkov/terraform/checks/resource/azure/EventHubNamespaceZoneRedundant.py b/checkov/terraform/checks/resource/azure/EventHubNamespaceZoneRedundant.py index 726144f85da..796ee4745be 100644 --- a/checkov/terraform/checks/resource/azure/EventHubNamespaceZoneRedundant.py +++ b/checkov/terraform/checks/resource/azure/EventHubNamespaceZoneRedundant.py @@ -18,7 +18,7 @@ def __init__(self) -> None: distributed among the remaining partitions. This behavior allows for the greatest amount of up time. """ name = "Ensure the Azure Event Hub Namespace is zone redundant" - id = "CKV_AZURE_221" + id = "CKV_AZURE_228" supported_resources = ("azurerm_eventhub_namespace",) categories = (CheckCategories.BACKUP_AND_RECOVERY,) super().__init__(name=name, id=id, categories=categories, supported_resources=supported_resources)