Pattern: Ensure HTTPS is enabled on Azure Storage Account
Issue: -
Requiring HTTPS in Storage Account helps to minimize the risk of eavesdropping.
Resolution: Only use HTTPS for storage account.
Example of incorrect code:
resource "azurerm_storage_account" "bad_example" {
enable_https_traffic_only = false
}
Example of correct code:
resource "azurerm_storage_account" "good_example" {
enable_https_traffic_only = true
}