Severity: Warning
resource "azurerm_storage_account" "example" {
min_tls_version = "TLS1_0"
}
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.
resource "azurerm_storage_account" "example" {
min_tls_version = "TLS1_2"
}
rule "azurerm_storage_account_unsecure_tls" {
enabled = false
}