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
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,7 +109,9 @@ To use path-based routing, define the `alb_listener_rules` variable with a list
109
109
| alb\_enable\_deletion\_protection | Enable deletion protection for ALBs |`bool`|`false`| no |
110
110
| alb\_http\_listener | Whether to enable HTTP listeners |`bool`|`true`| no |
111
111
| alb\_internal | Deploys a second internal ALB for private APIs. |`bool`|`false`| no |
112
+
| alb\_internal\_listener\_rules | A list of maps describing the Listener Rules for path-based routing on the internal ALB | <pre>list(object({<br> path_pattern = string<br> target_group_arn = string<br> priority = number<br> host_header = optional(string)<br> }))</pre> |`[]`| no |
112
113
| alb\_internal\_ssl\_policy | The name of the SSL Policy for the listener. Required if protocol is HTTPS or TLS. |`string`|`"ELBSecurityPolicy-TLS-1-2-Ext-2018-06"`| no |
114
+
| alb\_listener\_rules | A list of maps describing the Listener Rules for path-based routing on the external ALB | <pre>list(object({<br> path_pattern = string<br> target_group_arn = string<br> priority = number<br> host_header = optional(string)<br> }))</pre> |`[]`| no |
113
115
| alb\_only | Whether to deploy only an alb and no cloudFront or not with the cluster. |`bool`|`false`| no |
114
116
| alb\_sg\_allow\_alb\_test\_listener | Whether to allow world access to the test listeners |`bool`|`true`| no |
115
117
| alb\_sg\_allow\_egress\_https\_world | Whether to allow ALB to access HTTPS endpoints - needed when using OIDC authentication |`bool`|`true`| no |
@@ -180,10 +182,12 @@ To use path-based routing, define the `alb_listener_rules` variable with a list
0 commit comments