From 97981de8b84fb97e055f3f754c4e5d5c6c08d445 Mon Sep 17 00:00:00 2001 From: Paolo Frigo <32283271+PaoloFrigo@users.noreply.github.com> Date: Wed, 19 Feb 2025 14:25:25 +0100 Subject: [PATCH] Update argument name in azure - storage - enforce-https Update argument name to 'https_traffic_only_enabled' --- .../azure/storage/enforce-https/index.md | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/checks/azure/storage/enforce-https/index.md b/docs/checks/azure/storage/enforce-https/index.md index 445b296814..fabddd32c5 100644 --- a/docs/checks/azure/storage/enforce-https/index.md +++ b/docs/checks/azure/storage/enforce-https/index.md @@ -27,12 +27,12 @@ The following example will fail the azure-storage-enforce-https check. ```terraform resource "azurerm_storage_account" "bad_example" { - name = "storageaccountname" - resource_group_name = azurerm_resource_group.example.name - location = azurerm_resource_group.example.location - account_tier = "Standard" - account_replication_type = "GRS" - enable_https_traffic_only = false + name = "storageaccountname" + resource_group_name = azurerm_resource_group.example.name + location = azurerm_resource_group.example.location + account_tier = "Standard" + account_replication_type = "GRS" + https_traffic_only_enabled = false } ``` @@ -45,12 +45,12 @@ The following example will pass the azure-storage-enforce-https check. ```terraform resource "azurerm_storage_account" "good_example" { - name = "storageaccountname" - resource_group_name = azurerm_resource_group.example.name - location = azurerm_resource_group.example.location - account_tier = "Standard" - account_replication_type = "GRS" - enable_https_traffic_only = true + name = "storageaccountname" + resource_group_name = azurerm_resource_group.example.name + location = azurerm_resource_group.example.location + account_tier = "Standard" + account_replication_type = "GRS" + https_traffic_only_enabled = true } ```