generated from kabisa/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvhost-availability-variables.tf
92 lines (74 loc) · 1.59 KB
/
vhost-availability-variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
variable "vhost_availability_enabled" {
type = bool
default = true
}
variable "vhost_availability_freshness_cycles" {
type = number
default = 3
}
variable "vhost_availability_warning" {
type = number
default = 2
}
variable "vhost_availability_critical" {
type = number
default = 3
}
variable "vhost_availability_evaluation_period" {
type = string
default = "last_5m"
}
variable "vhost_availability_note" {
type = string
default = ""
}
variable "vhost_availability_docs" {
type = string
default = "This monitor raises alerts when it cannot successfully connect to an apache vhost."
}
variable "vhost_availability_include_tags" {
type = list(string)
default = []
}
variable "vhost_availability_exclude_tags" {
type = list(string)
default = []
}
variable "vhost_availability_filter_override" {
type = string
default = ""
}
variable "vhost_availability_alerting_enabled" {
type = bool
default = true
}
variable "vhost_availability_no_data_timeframe" {
type = number
default = 0
}
variable "vhost_availability_notify_no_data" {
type = bool
default = false
}
variable "vhost_availability_ok_threshold" {
type = number
default = 1
}
variable "vhost_availability_name_prefix" {
type = string
default = ""
}
variable "vhost_availability_name_suffix" {
type = string
default = ""
}
variable "vhost_availability_priority" {
description = "Number from 1 (high) to 5 (low)."
type = number
default = 2
}
variable "vhost_require_full_window" {
description = ""
type = bool
default = false
}