-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
71 lines (60 loc) · 2.11 KB
/
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
variable "alarm_enabled" {
type = bool
default = true
description = "Defines if alarms should be created"
}
variable "alarm_datapoints_to_alarm" {
type = number
default = 3
description = "The number of datapoints that must be breaching to trigger the alarm"
}
variable "alarm_description" {
type = string
description = "The description for the alarm"
default = null
}
variable "alarm_evaluation_periods" {
type = number
default = 3
description = "The number of periods over which data is compared to the specified threshold"
}
variable "alarm_period" {
type = number
default = 60
description = "The period in seconds over which the specified statistic is applied"
}
variable "alarm_success_rate_threshold" {
type = number
default = 99
description = "Required percentage of successful messages"
}
variable "alarm_topic_arn" {
type = string
description = "The ARN of the topic to send alarms to"
default = null
}
variable "principals_with_publish_permission" {
type = list(string)
description = "ARNs of accounts that are allowed to publish messages e.g. \"arn:aws:iam::123456789123:root\""
default = []
}
variable "principals_with_subscribe_permission" {
type = list(string)
description = "ARNs of accounts that are allowed to subscribe e.g. \"arn:aws:iam::123456789123:root\""
default = []
}
variable "sqs_failure_feedback_role_arn" {
type = string
description = "ARN for sqs failure logging, requires [\"logs:CreateLogGroup\", \"logs:CreateLogStream\", \"logs:PutLogEvents\", \"logs:PutMetricFilter\", \"logs:PutRetentionPolicy\"],]"
default = null
}
variable "sqs_success_feedback_role_arn" {
type = string
description = "ARN for sqs success logging, requires [\"logs:CreateLogGroup\", \"logs:CreateLogStream\", \"logs:PutLogEvents\", \"logs:PutMetricFilter\", \"logs:PutRetentionPolicy\"],]"
default = null
}
variable "sqs_success_feedback_sample_rate" {
type = number
description = "Percentage of how many samples to take"
default = null
}