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: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -242,7 +242,7 @@ Available targets:
242
242
| authenticated\_hosts | Authenticated hosts to match in Hosts header |`list(string)`|`[]`| no |
243
243
| authenticated\_listener\_arns | A list of authenticated ALB listener ARNs to attach ALB listener rules to |`list(string)`|`[]`| no |
244
244
| authenticated\_paths | Authenticated path pattern to match (a maximum of 1 can be defined) |`list(string)`|`[]`| no |
245
-
| authenticated\_priority | The priority for the rules with authentication, between 1 and 50000 (1 being highest priority). Must be different from `unauthenticated_priority` since a listener can't have multiple rules with the same priority |`number`|`0`| no |
245
+
| authenticated\_priority | The priority for the rules with authentication, between 1 and 50000 (1 being highest priority). Must be different from `unauthenticated_priority` since a listener can't have multiple rules with the same priority |`number`|`null`| no |
246
246
| authentication\_cognito\_scope | Cognito scope, which should be a space separated string of requested scopes (see https://openid.net/specs/openid-connect-core-1_0.html#ScopeClaims)|`string`|`null`| no |
247
247
| authentication\_cognito\_user\_pool\_arn | Cognito User Pool ARN |`string`|`""`| no |
248
248
| authentication\_cognito\_user\_pool\_client\_id | Cognito User Pool Client ID |`string`|`""`| no |
@@ -292,7 +292,7 @@ Available targets:
292
292
| unauthenticated\_hosts | Unauthenticated hosts to match in Hosts header |`list(string)`|`[]`| no |
293
293
| unauthenticated\_listener\_arns | A list of unauthenticated ALB listener ARNs to attach ALB listener rules to |`list(string)`|`[]`| no |
294
294
| unauthenticated\_paths | Unauthenticated path pattern to match (a maximum of 1 can be defined) |`list(string)`|`[]`| no |
295
-
| unauthenticated\_priority | The priority for the rules without authentication, between 1 and 50000 (1 being highest priority). Must be different from `authenticated_priority` since a listener can't have multiple rules with the same priority |`number`|`0`| no |
295
+
| unauthenticated\_priority | The priority for the rules without authentication, between 1 and 50000 (1 being highest priority). Must be different from `authenticated_priority` since a listener can't have multiple rules with the same priority |`number`|`null`| no |
296
296
| vpc\_id | The VPC ID where generated ALB target group will be provisioned (if `target_group_arn` is not set) |`string`| n/a | yes |
Copy file name to clipboardExpand all lines: docs/terraform.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@
38
38
| authenticated\_hosts | Authenticated hosts to match in Hosts header |`list(string)`|`[]`| no |
39
39
| authenticated\_listener\_arns | A list of authenticated ALB listener ARNs to attach ALB listener rules to |`list(string)`|`[]`| no |
40
40
| authenticated\_paths | Authenticated path pattern to match (a maximum of 1 can be defined) |`list(string)`|`[]`| no |
41
-
| authenticated\_priority | The priority for the rules with authentication, between 1 and 50000 (1 being highest priority). Must be different from `unauthenticated_priority` since a listener can't have multiple rules with the same priority |`number`|`0`| no |
41
+
| authenticated\_priority | The priority for the rules with authentication, between 1 and 50000 (1 being highest priority). Must be different from `unauthenticated_priority` since a listener can't have multiple rules with the same priority |`number`|`null`| no |
42
42
| authentication\_cognito\_scope | Cognito scope, which should be a space separated string of requested scopes (see https://openid.net/specs/openid-connect-core-1_0.html#ScopeClaims)|`string`|`null`| no |
43
43
| authentication\_cognito\_user\_pool\_arn | Cognito User Pool ARN |`string`|`""`| no |
44
44
| authentication\_cognito\_user\_pool\_client\_id | Cognito User Pool Client ID |`string`|`""`| no |
@@ -88,7 +88,7 @@
88
88
| unauthenticated\_hosts | Unauthenticated hosts to match in Hosts header |`list(string)`|`[]`| no |
89
89
| unauthenticated\_listener\_arns | A list of unauthenticated ALB listener ARNs to attach ALB listener rules to |`list(string)`|`[]`| no |
90
90
| unauthenticated\_paths | Unauthenticated path pattern to match (a maximum of 1 can be defined) |`list(string)`|`[]`| no |
91
-
| unauthenticated\_priority | The priority for the rules without authentication, between 1 and 50000 (1 being highest priority). Must be different from `authenticated_priority` since a listener can't have multiple rules with the same priority |`number`|`0`| no |
91
+
| unauthenticated\_priority | The priority for the rules without authentication, between 1 and 50000 (1 being highest priority). Must be different from `authenticated_priority` since a listener can't have multiple rules with the same priority |`number`|`null`| no |
92
92
| vpc\_id | The VPC ID where generated ALB target group will be provisioned (if `target_group_arn` is not set) |`string`| n/a | yes |
description="The priority for the rules without authentication, between 1 and 50000 (1 being highest priority). Must be different from `authenticated_priority` since a listener can't have multiple rules with the same priority"
104
104
}
105
105
106
106
variable"authenticated_priority" {
107
107
type=number
108
-
default=0
108
+
default=null
109
109
description="The priority for the rules with authentication, between 1 and 50000 (1 being highest priority). Must be different from `unauthenticated_priority` since a listener can't have multiple rules with the same priority"
0 commit comments