Skip to content

Logging is disabled for Dialogflow agents

Description

This policy is checking to ensure that logging is enabled for Dialogflow agents in the Google Cloud Platform (GCP). Dialogflow is a tool used to create conversational interfaces and chatbots. It's important to have logging enabled for this tool to monitor its activity and performance. If logging is not enabled, potential issues or abnormalities within the system might go undetected, making it harder to debug and troubleshoot problems. Additionally, the absence of logging hampers auditability, hence thwarting any efforts to uphold compliance with certain regulations that require logging and monitoring of activities.

Code Example

go
resource "google_dialogflow_agent" "default" {
  ...
  enable_logging = true
}

Remediation

Terraform

  • Resource: google_dialogflow_agent
  • Arguments: enable_logging

To fix this policy issue, you need to ensure that logging is enabled for Dialogflow agents. The attribute `enable_logging` must be set to `true` in the settings for your Dialogflow agents.

Rule Details

FieldValue
IDIAC-1014
SeverityMEDIUM
IaC TypeTerraform
FrameworksTerraform, TerraformPlan
Checkov IDCKV2_GCP_29

References