-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
37 lines (31 loc) · 1.17 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
variable "additional_endpoint_arns" {
description = "Any alert endpoints, such as autoscaling, or app scaling endpoint arns that will respond to an alert"
default = []
type = "list"
}
variable "sns_topic_arn" {
description = "An SNS topic ARN that has already been created. Its policy must already allow access from CloudWatch Alarms, or set `add_sns_policy` to `true`"
default = ""
type = "string"
}
variable "add_sns_policy" {
description = "Attach a policy that allows the notifications through to the SNS topic endpoint"
default = "false"
type = "string"
}
variable "region" {
description = "The region that should be monitored for unauthorised AWS API Access. Current region used if none provied."
default = ""
type = "string"
}
variable "log_group_name" {
description = "The cloudtrail cloudwatch log group name"
}
variable "metric_namespace" {
description = "A namespace for grouping all of the metrics together"
default = "CISBenchmark"
}
variable "create_dashboard" {
description = "When true a dashboard that displays the statistics as a line graph will be created in CloudWatch"
default = "true"
}