-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
50 lines (40 loc) · 1 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
variable "account-id" {
type = string
description = "Id for the account resources are to be created"
}
variable "dispay_name" {
type = string
description = "SNS Topic Display Name"
}
variable "alarm_rules" {
type = string
description = "Alarm rules for the Composite Alarm"
}
variable "alarm_configs" {
type = map(map(any))
description = "Alarm configuration for the cloudwatch alarm"
}
variable "sns_topic_name" {
type = string
description = "SNS Topic Display Name"
}
variable "log_group_name" {
type = string
description = "Cloudwatch log group name"
}
variable "log_stream_name" {
type = string
description = "Cloudwatch log stream name"
}
variable "tags" {
type = map(any)
description = "Tags for resources"
}
variable "composite_alarm_description" {
type = string
description = "Composite alarm description"
}
variable "composite_alarm_name" {
type = string
description = "Cloudwatch alarm name"
}