MON-224 Removed additional tags for monitors

This commit is contained in:
Rafael Romero Carmona 2018-06-14 11:33:21 +02:00 committed by Quentin Manfroi
parent 7e05a55331
commit 91b07cbb65
2 changed files with 0 additions and 21 deletions

View File

@ -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 = {}
}

View File

@ -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}",
]
}