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: variables.tf
+13-1
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ variable "listener_arns" {
46
46
variable"listener_arns_count" {
47
47
type="string"
48
48
default="0"
49
-
description="The number of ARNs in listener_arns, this is necessary to work around a limitation in Terraform where counts cannot be computed"
49
+
description="The number of ARNs in `listener_arns`. This is necessary to work around a limitation in Terraform where counts cannot be computed"
50
50
}
51
51
52
52
variable"deregistration_delay" {
@@ -130,3 +130,15 @@ variable "paths" {
130
130
default=[]
131
131
description="Path pattern to match (a maximum of 1 can be defined), at least one of hosts or paths must be set"
132
132
}
133
+
134
+
variable"authentication_enabled" {
135
+
type="string"
136
+
default="false"
137
+
description="Whether to enable authentication action for ALB listener to authenticate users with Cognito or OIDC"
138
+
}
139
+
140
+
variable"authentication_action" {
141
+
type="map"
142
+
default={}
143
+
description="Authentication action to be placed in front of all other ALB listener actions to authenticate users with Cognito or OIDC. Required when `authentication_enabled=true`"
0 commit comments