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
| attributes | Additional attributes (\_e.g.\_ "1") |`list(string)`|`[]`| no |
197
+
| additional\_tag\_map | Additional tags for appending to tags\_as\_list\_of\_maps. Not added to `tags`. |`map(string)`|`{}`| no |
198
+
| attributes | Additional attributes (e.g. `1`) |`list(string)`|`[]`| no |
199
199
| authenticated\_hosts | Authenticated hosts to match in Hosts header |`list(string)`|`[]`| no |
200
200
| authenticated\_listener\_arns | A list of authenticated ALB listener ARNs to attach ALB listener rules to |`list(string)`|`[]`| no |
201
201
| authenticated\_listener\_arns\_count | The number of authenticated ARNs in `authenticated_listener_arns`. This is necessary to work around a limitation in Terraform where counts cannot be computed |`number`|`0`| no |
@@ -213,10 +213,12 @@ Available targets:
213
213
| authentication\_oidc\_token\_endpoint | OIDC Token Endpoint |`string`|`""`| no |
214
214
| authentication\_oidc\_user\_info\_endpoint | OIDC User Info Endpoint |`string`|`""`| no |
215
215
| authentication\_type | Authentication type. Supported values are `COGNITO` and `OIDC`|`string`|`""`| no |
216
+
| context | Single object for setting entire context at once.<br>See description of individual variables for details.<br>Leave string and numeric variables as `null` to use default value.<br>Individual variable settings (non-null) override settings in context object,<br>except for attributes, tags, and additional\_tag\_map, which are merged. | <pre>object({<br> enabled = bool<br> namespace = string<br> environment = string<br> stage = string<br> name = string<br> delimiter = string<br> attributes = list(string)<br> tags = map(string)<br> additional_tag_map = map(string)<br> regex_replace_chars = string<br> label_order = list(string)<br> id_length_limit = number<br> })</pre> | <pre>{<br> "additional_tag_map": {},<br> "attributes": [],<br> "delimiter": null,<br> "enabled": true,<br> "environment": null,<br> "id_length_limit": null,<br> "label_order": [],<br> "name": null,<br> "namespace": null,<br> "regex_replace_chars": null,<br> "stage": null,<br> "tags": {}<br>}</pre> | no |
216
217
| default\_target\_group\_enabled | Enable/disable creation of the default target group |`bool`|`true`| no |
217
-
| delimiter | Delimiter between `namespace`, `stage`, `name` and `attributes`|`string`|`"-"`| no |
218
+
| delimiter | Delimiter to be used between `namespace`, `environment`, `stage`, `name` and `attributes`.<br>Defaults to `-` (hyphen). Set to `""` to use no delimiter at all. |`string`|`null`| no |
218
219
| deregistration\_delay | The amount of time to wait in seconds while deregistering target |`number`|`15`| no |
219
-
| enabled | Set to false to prevent the module from creating any resources |`bool`|`true`| no |
220
+
| enabled | Set to false to prevent the module from creating any resources |`bool`|`null`| no |
221
+
| environment | Environment, e.g. 'uw2', 'us-west-2', OR 'prod', 'staging', 'dev', 'UAT' |`string`|`null`| no |
220
222
| health\_check\_enabled | Indicates whether health checks are enabled. Defaults to `true`|`bool`|`true`| no |
221
223
| health\_check\_healthy\_threshold | The number of consecutive health checks successes required before healthy |`number`|`2`| no |
222
224
| health\_check\_interval | The duration in seconds in between health checks |`number`|`15`| no |
@@ -226,16 +228,19 @@ Available targets:
226
228
| health\_check\_protocol | The protocol to use to connect with the target. Defaults to `HTTP`. Not applicable when `target_type` is `lambda`|`string`|`"HTTP"`| no |
227
229
| health\_check\_timeout | The amount of time to wait in seconds before failing a health check request |`number`|`10`| no |
228
230
| health\_check\_unhealthy\_threshold | The number of consecutive health check failures required before unhealthy |`number`|`2`| no |
229
-
| name | Name of the application |`string`| n/a | yes |
230
-
| namespace | Namespace (e.g. `eg` or `cp`) |`string`|`""`| no |
231
+
| id\_length\_limit | Limit `id` to this many characters.<br>Set to `0` for unlimited length.<br>Set to `null` for default, which is `0`.<br>Does not affect `id_full`. |`number`|`null`| no |
232
+
| label\_order | The naming order of the id output and Name tag.<br>Defaults to ["namespace", "environment", "stage", "name", "attributes"].<br>You can omit any of the 5 elements, but at least one must be present. |`list(string)`|`null`| no |
233
+
| name | Solution name, e.g. 'app' or 'jenkins' |`string`|`null`| no |
234
+
| namespace | Namespace, which could be your organization name or abbreviation, e.g. 'eg' or 'cp' |`string`|`null`| no |
231
235
| port | The port for the created ALB target group (if `target_group_arn` is not set) |`number`|`80`| no |
232
236
| protocol | The protocol for the created ALB target group (if `target_group_arn` is not set) |`string`|`"HTTP"`| no |
237
+
| regex\_replace\_chars | Regex to replace chars with empty string in `namespace`, `environment`, `stage` and `name`.<br>If not set, `"/[^a-zA-Z0-9-]/"` is used to remove all characters other than hyphens, letters and digits. |`string`|`null`| no |
233
238
| slow\_start | The amount of time for targets to warm up before the load balancer sends them a full share of requests. The range is 30-900 seconds or 0 to disable. The default value is `0` seconds |`number`|`0`| no |
| stage | Stage, e.g. 'prod', 'staging', 'dev', OR 'source', 'build', 'test', 'deploy', 'release' |`string`|`null`| no |
235
240
| stickiness\_cookie\_duration | The time period, in seconds, during which requests from a client should be routed to the same target. After this time period expires, the load balancer-generated cookie is considered stale. The range is 1 second to 1 week (604800 seconds). The default value is 1 day (86400 seconds) |`number`|`86400`| no |
236
241
| stickiness\_enabled | Boolean to enable / disable `stickiness`. Default is `true`|`bool`|`true`| no |
237
242
| stickiness\_type | The type of sticky sessions. The only current possible value is `lb_cookie`|`string`|`"lb_cookie"`| no |
| tags | Additional tags (e.g.`map('BusinessUnit','XYZ')`|`map(string)`|`{}`| no |
239
244
| target\_group\_arn | Existing ALB target group ARN. If provided, set `default_target_group_enabled` to `false` to disable creation of the default target group |`string`|`""`| no |
240
245
| target\_type | The type (`instance`, `ip` or `lambda`) of targets that can be registered with the target group |`string`|`"ip"`| no |
241
246
| unauthenticated\_hosts | Unauthenticated hosts to match in Hosts header |`list(string)`|`[]`| no |
0 commit comments