-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
69 lines (59 loc) · 1.26 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
variable "name" {
type = string
description = "AWS Load Balancer name"
}
variable "type" {
type = string
default = "application"
description = "AWS load balancer type"
}
variable "internal" {
type = bool
default = false
description = "Is AWS Load Balancer internal?"
}
variable "subnets" {
type = list(string)
description = "AWS LB subnets"
}
variable "security_groups" {
type = list(string)
description = "AWS LB security groups"
}
variable "idle_timeout" {
type = number
default = 600
description = "AWS LB idle timeout"
}
variable "subnet_mapping" {
type = list(object({
subnet_id = string
allocation_id = string
}))
default = null
description = "AWS Load Balancer subnet mapping"
}
variable "deletion_protection" {
type = string
default = false
description = "AWS LB deletion protection"
}
variable "tags" {
type = map(string)
default = null
description = "Tags"
}
variable "listeners" {
type = any
default = null
description = "AWS LB listeners"
}
variable "access_logs" {
type = object({
bucket = string
prefix = string
enabled = bool
})
default = null
description = "AWS ALB access logs"
}