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 applicationsRestrict Google Dataflow to internal traffic to prevent unauthorized access and data exposure. Allowing external access risks data breaches, compliance violations, and increased attack surface.
Set the ip_configuration
attribute to WORKER_IP_PRIVATE
to prevent unauthorized access and data exposure.
resource "google_dataflow_job" "allowed1" {
name = "allowed1"
template_gcs_path = "gs://dataflow-templates/latest/Word_Count"
temp_gcs_location = "gs://example713/temp"
parameters = {
inputFile = "gs://example713/template.json"
output = "gs://example713"
}
ip_configuration = "WORKER_IP_PRIVATE"
}