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 applicationsSNS subscriptions should not use HTTP as the delivery protocol. To enforce encryption in transit, any subscription to an HTTP endpoint should use HTTPS instead.
Ensure that the aws_sns_topic_subscription
protocol
field is NOT set to http
.
resource "aws_sns_topic_subscription" "user_updates_sqs_target" {
protocol = "https"
# other required fields here
}