diff --git a/cloud/gcp/cloud-sql/instance/inputs.tf b/cloud/gcp/cloud-sql/instance/inputs.tf index ddb5739..9918e2e 100644 --- a/cloud/gcp/cloud-sql/instance/inputs.tf +++ b/cloud/gcp/cloud-sql/instance/inputs.tf @@ -66,12 +66,6 @@ variable "cpu_silenced" { default = {} } -variable "cpu_tags" { - description = "Tags to add to the CPU Utilization monitors" - type = "map" - default = {} -} - # # DISK # @@ -105,12 +99,6 @@ variable "disk_silenced" { default = {} } -variable "disk_tags" { - description = "Tags to add to the Disk Utilization monitors" - type = "map" - default = {} -} - # # Network Connections # @@ -148,9 +136,3 @@ variable "network_connections_silenced" { type = "map" default = {} } - -variable "network_connections_tags" { - description = "Tags to add to the Network Connections monitors" - type = "map" - default = {} -} diff --git a/cloud/gcp/cloud-sql/instance/monitors-cloud-sql-instance.tf b/cloud/gcp/cloud-sql/instance/monitors-cloud-sql-instance.tf index 73a51fc..722af31 100644 --- a/cloud/gcp/cloud-sql/instance/monitors-cloud-sql-instance.tf +++ b/cloud/gcp/cloud-sql/instance/monitors-cloud-sql-instance.tf @@ -50,7 +50,6 @@ EOF "provider:gcp", "env:${var.environment}", "resource:cloud-sql", - "${var.cpu_tags}", ] } @@ -93,7 +92,6 @@ EOF "provider:gcp", "env:${var.environment}", "resource:cloud-sql", - "${var.disk_tags}", ] } @@ -137,6 +135,5 @@ EOF "provider:gcp", "env:${var.environment}", "resource:cloud-sql", - "${var.network_connections_tags}", ] }