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 applicationsHTTPS-based monitoring improves security and increases accuracy of health probes.
Set monitor_config.protocol
to HTTPS
.
Set monitor_config.protocol
to HTTPS
.
resource "azurerm_traffic_manager_profile" "allow" {
name = random_id.server.hex
resource_group_name = azurerm_resource_group.example566a.name
traffic_routing_method = "Weighted"
dns_config {
relative_name = random_id.server.hex
ttl = 100
}
monitor_config {
protocol = "HTTPS"
port = 80
path = "/"
interval_in_seconds = 30
timeout_in_seconds = 9
tolerated_number_of_failures = 3
}
tags = {
environment = "Production"
}
}