diff --git a/datadog-samples/inputs-declaration.sample b/datadog-samples/inputs-declaration.sample deleted file mode 100644 index 01e8c8d..0000000 --- a/datadog-samples/inputs-declaration.sample +++ /dev/null @@ -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" -} diff --git a/datadog-samples/modules-declaration.sample b/datadog-samples/modules-declaration.sample deleted file mode 100644 index 8965975..0000000 --- a/datadog-samples/modules-declaration.sample +++ /dev/null @@ -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}" -} diff --git a/datadog-samples/users-datadog.sample b/datadog-samples/users-datadog.sample deleted file mode 100644 index 3fde771..0000000 --- a/datadog-samples/users-datadog.sample +++ /dev/null @@ -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" -} -