Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 603 Bytes

azurerm_storage_account_unsecure_tls.md

File metadata and controls

34 lines (22 loc) · 603 Bytes

azurerm_storage_account_unsecure_tls

Severity: Warning

Example

resource "azurerm_storage_account" "example" {
    min_tls_version = "TLS1_0"
}

Why

Enforcing a minimum TLS version of 1.2 ensures secure communication by adhering to modern encryption standards, protecting data in transit from vulnerabilities in older TLS versions, as versions 1.0 and 1.1 are insecure.

How to Fix

resource "azurerm_storage_account" "example" {
    min_tls_version = "TLS1_2"
}

How to disable

rule "azurerm_storage_account_unsecure_tls" {
  enabled = false
}