forked from aiden/terraform-aws-cloudwatch-to-syslog-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
31 lines (25 loc) · 822 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
variable name {
description = <<EOF
Common name given to the lambda function, the IAM role, the lambda permission statement,
and the log subscription filter.
EOF
}
variable region {
description = "The AWS region where the AWS CloudWatch Logs are located."
}
variable account_id {
description = "The ID of the AWS account where the AWS CloudWatch Logs are located."
}
variable log_group {
description = "The name of the AWS CloudWatch log group to forward to the syslog server."
}
variable syslog_server_host {
description = "The host for the syslog server (e.g., logs5.papertrailapp.com)."
}
variable syslog_server_port {
description = "The port for the syslog server."
}
variable disable_tls {
default = "0"
description = "Whether to use TLS or not when communicating with the syslog server."
}