Severity: Warning
resource "azurerm_linux_web_app_slot" "example" {
https_only = false
}
Enforcing https_only ensures all communications with the resource are encrypted, protecting sensitive data in transit and mitigating the risk of man-in-the-middle attacks.
resource "azurerm_linux_web_app_slot" "example" {
https_only = true
}
rule "azurerm_linux_web_app_slot_https_only" {
enabled = false
}