forked from UKHomeOffice/acp-tf-lambda-es-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
75 lines (50 loc) · 901 Bytes
/
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
variable "function_name" {
default = "ssh-notifier"
}
variable "elasticsearch_password_parameter_name" {
default = "ssh_notifier_elasticsearch_password"
}
variable "slack_password_parameter_name" {
default = "pod_exec_alert_slack_bot_password"
}
variable "elasticsearch_username" {
}
variable "elasticsearch_hostname" {
}
variable "tag_selector_key" {
default = ""
}
variable "tag_selector_value" {
default = ""
}
variable "period_minutes" {
default = "5"
}
variable "query_string" {
}
variable "index_pattern" {
}
variable "timeout" {
default = 300
}
variable "subnet_ids" {
}
variable "vpc_id" {
}
variable "email_targets" {
type = set(string)
}
variable "check_ec2" {
type = string
}
variable "period_event_threshold" {
type = number
}
variable query_delay_minutes {
default = 15
}
variable "tags" {
}
variable "slack_channel_id" {
default = ""
}