diff --git a/cloud/gcp/cloud-sql/mysql/README.md b/cloud/gcp/cloud-sql/mysql/README.md index e10dde1..9551eaf 100644 --- a/cloud/gcp/cloud-sql/mysql/README.md +++ b/cloud/gcp/cloud-sql/mysql/README.md @@ -40,7 +40,6 @@ Creates DataDog monitors with the following checks: | network_connections_timeframe | Timeframe for the Network Connections monitor | string | `last_15m` | no | | project_id | ID of the GCP Project | string | - | yes | | queries_changing_anomaly_detection_algorithm | Anomaly Detection Algorithm used | string | `agile` | no | -| queries_changing_database_ids | List of database ids for the Queries Changing monitor | list | `` | no | | queries_changing_deviations | Deviations to detect the anomaly | string | `4` | no | | queries_changing_direction | Direction of the anomaly. It can be both, below or above. | string | `both` | no | | queries_changing_enabled | Whether or not to create the monitor | string | `true` | no | @@ -53,7 +52,6 @@ Creates DataDog monitors with the following checks: | queries_changing_threshold_warning | Queries Changing warning threshold | string | `0.5` | no | | queries_changing_timeframe | Timeframe for the Queries Changing mon monitor | string | `last_1h` | no | | questions_changing_anomaly_detection_algorithm | Anomaly Detection Algorithm used | string | `agile` | no | -| questions_changing_database_ids | List of database ids for the Questions Changing monitor | list | `` | no | | questions_changing_deviations | Deviations to detect the anomaly | string | `4` | no | | questions_changing_direction | Direction of the anomaly. It can be both, below or above. | string | `both` | no | | questions_changing_enabled | Whether or not to create the monitor | string | `true` | no | diff --git a/cloud/gcp/cloud-sql/mysql/inputs.tf b/cloud/gcp/cloud-sql/mysql/inputs.tf index e0f56c4..babdf71 100644 --- a/cloud/gcp/cloud-sql/mysql/inputs.tf +++ b/cloud/gcp/cloud-sql/mysql/inputs.tf @@ -138,11 +138,6 @@ variable "queries_changing_enabled" { default = "true" } -variable "queries_changing_database_ids" { - description = "List of database ids for the Queries Changing monitor" - type = "list" - default = [] -} variable "queries_changing_message" { description = "Custom message for the Queries Changing monitor" @@ -231,12 +226,6 @@ variable "questions_changing_timeframe" { default = "last_1h" } -variable "questions_changing_database_ids" { - description = "List of database ids for the Questions Changing monitor" - type = "list" - default = [] -} - variable "questions_changing_anomaly_detection_algorithm" { description = "Anomaly Detection Algorithm used" type = "string"