Using unencrypted cloud storages can lead to data exposure. In the case that adversaries gain physical access to the storage medium they are able to access unencrypted information.
There is a risk if you answered yes to any of those questions.
It’s recommended to encrypt cloud storages that contain sensitive information.
resource "azurerm_data_lake_store" "store" {
name = "store"
encryption_state = "Disabled" # Sensitive
}
resource "azurerm_data_lake_store" "store" {
name = "store"
encryption_state = "Enabled"
encryption_type = "ServiceManaged"
}