forked from antonbabenko/modules.tf-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelb.json
More file actions
73 lines (73 loc) · 1.81 KB
/
elb.json
File metadata and controls
73 lines (73 loc) · 1.81 KB
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
70
71
72
73
{
"access_logs": {
"default": {},
"description": "An access logs block",
"type": "map(string)"
},
"connection_draining": {
"default": false,
"description": "Boolean to enable connection draining",
"type": "bool"
},
"connection_draining_timeout": {
"default": 300,
"description": "The time in seconds to allow for connections to drain",
"type": "number"
},
"cross_zone_load_balancing": {
"default": true,
"description": "Enable cross-zone load balancing",
"type": "bool"
},
"health_check": {
"description": "A health check block",
"type": "map(string)"
},
"idle_timeout": {
"default": 60,
"description": "The time in seconds that the connection is allowed to be idle",
"type": "number"
},
"instances": {
"default": [],
"description": "List of instances ID to place in the ELB pool",
"type": "list(string)"
},
"internal": {
"default": false,
"description": "If true, ELB will be an internal ELB",
"type": "bool"
},
"listener": {
"description": "A list of listener blocks",
"type": "list(map(string))"
},
"name": {
"default": "null",
"description": "The name of the ELB",
"type": "string"
},
"name_prefix": {
"default": "null",
"description": "The prefix name of the ELB",
"type": "string"
},
"number_of_instances": {
"default": 0,
"description": "Number of instances to attach to ELB",
"type": "number"
},
"security_groups": {
"description": "A list of security group IDs to assign to the ELB",
"type": "list(string)"
},
"subnets": {
"description": "A list of subnet IDs to attach to the ELB",
"type": "list(string)"
},
"tags": {
"default": {},
"description": "A mapping of tags to assign to the resource",
"type": "map(string)"
}
}