-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
40 lines (32 loc) · 1017 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
32
33
34
35
36
37
38
39
40
variable "name" {
description = "Load balancer name."
}
variable "region" {
description = "AWS region."
}
variable "log_retention_in_days" {
description = "Number of days to retain lambda logs."
}
variable "listener_arns" {
description = "List of application load balancer listeners` arns to attach private hostnames to."
type = list(string)
}
variable "source_ips" {
description = "List of source ips in cidr format that are allowed to access /private-hostname/update."
type = list(string)
}
variable "zone_id" {
description = "AWS Route53 Hosted Zone Id for private hostnames."
}
variable "hostname" {
description = "If only one hostname is needed specify hostname, otherwise use hostname_prefix."
default = ""
}
variable "hostname_prefix" {
description = "If more than one hostname is needed specify hostname_prefix, otherwise use hostname."
default = ""
}
variable "tags" {
description = "Tags to assign to created resources."
type = map(string)
}