CCSS (Common Configuration Scoring System) is a set of measures used to determine the severity of the rule.
Each rule is associated with a high-level category. For example IAM, Container, Monitoring, Logging, Network, etc.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsNon-encrypted variables might leak sensitive information.
Set properties.isEncrypted
to true
.
Set encrypted
to true
in azurerm_automation_variable_bool
, azurerm_automation_variable_datetime
, azurerm_automation_variable_int
, or azurerm_automation_variable_string
resources.
Example configuration:
resource "azurerm_automation_variable_bool" "allowed1" {
name = "tfex-var1"
resource_group_name = azurerm_resource_group.example504v.name
automation_account_name = azurerm_automation_account.example504v.name
value = false
encrypted = true
}