MON-97 remove datadog samples which are not useful with readme

This commit is contained in:
Quentin Manfroi 2018-03-23 23:42:07 +01:00
parent 44f6368c03
commit d2d6dbfc98
3 changed files with 0 additions and 60 deletions

View File

@ -1,47 +0,0 @@
# Global Terraform
variable "environment" {
description = "Architecture Environment"
type = "string"
}
# Global DataDog
variable "evaluation_delay" {
description = "Delay in seconds for the metric evaluation"
default = 600
}
variable "message" {
description = "Message sent when an alert is triggered"
}
variable "filter_tags_use_defaults" {
description = "Use default filter tags convention"
default = "true"
}
variable "filter_tags_custom" {
description = "Tags used for custom filtering when filter_tags_use_defaults is false"
default = "*"
}
# instance specific
variable "cpu_threshold_warning" {
description = "CPU usage in percent (warning threshold)"
default = "80"
}
variable "cpu_threshold_critical" {
description = "CPU usage in percent (critical threshold)"
default = "90"
}
variable "diskspace_threshold_warning" {
description = "Disk free space in percent (warning threshold)"
default = "20"
}
variable "diskspace_threshold_critical" {
description = "Disk free space in percent (critical threshold)"
default = "10"
}

View File

@ -1,6 +0,0 @@
module "datadog-monitors-feature" {
source = "git::ssh://git@bitbucket.org/morea/terraform.feature.datadog.git/{monitors_feature_path}?ref={revision}"
environment = "${var.environment}"
message = "${module.datadog-message-alerting.alerting-message}"
}

View File

@ -1,7 +0,0 @@
#Datadog users
resource "datadog_user" "adrien_brefort" {
email = "adrien.brefort@fr.clara.net"
handle = "adrien.brefort@fr.clara.net"
name = "Adrien Bréfort"
}