-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
26 lines (22 loc) · 838 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
variable "rds_dns_name" {
default = ""
description = "the DNS name of the RDS database."
}
variable "nlb_tg_arn" {
type = string
default = ""
description = "Network Log Balancer Target Group arn."
}
variable "max_lookup_per_invocation" {
type = string
default = "10"
description = "Maximum number of invocations of DNS lookup"
}
variable "schedule_expression" {
default = "cron(5 * * * ? *)"
description = "the aws cloudwatch event rule scheule expression that specifies when the scheduler runs. Default is 5 minuts past the hour. for debugging use 'rate(5 minutes)'. See https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html"
}
variable "resource_name_prefix" {
default = ""
description = "a prefix to apply to resource names created by this module."
}