You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/alb/variables.tf
+12-2Lines changed: 12 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,29 +11,34 @@ variable "name" {
11
11
variable"internal" {
12
12
description="(Optional) If true, the LB will be internal."
13
13
type=bool
14
+
nullable=false
14
15
default=false
15
16
}
16
17
17
18
variable"security_groups_ids" {
18
19
description="(Optional) List of security group IDs to assign to the LB."
19
20
type=list(string)
21
+
nullable=false
20
22
default=[]
21
23
}
22
24
23
25
variable"subnets_ids" {
24
26
description="(Optional) List of subnet IDs to attach to the LB."
25
27
type=list(string)
28
+
nullable=false
26
29
}
27
30
28
31
variable"preserve_host_header" {
29
32
description="(Optional) Whether the Application Load Balancer should preserve the Host header in the HTTP request and send it to the target without any change."
30
33
type=bool
34
+
nullable=false
31
35
default=true
32
36
}
33
37
34
38
variable"enable_deletion_protection" {
35
39
description="(Optional) If true, deletion of the load balancer will be disabled via the AWS API."
36
40
type=bool
41
+
nullable=false
37
42
default=false
38
43
}
39
44
@@ -60,6 +65,7 @@ variable "connection_logs" {
60
65
variable"tags" {
61
66
description="(Optional) Map of tags to assign to the resource."
0 commit comments