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/service/README.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -268,7 +268,7 @@ module "ecs_service" {
268
268
| <aname="input_network_mode"></a> [network\_mode](#input\_network\_mode)| Docker networking mode to use for the containers in the task. Valid values are `none`, `bridge`, `awsvpc`, and `host`|`string`|`"awsvpc"`| no |
269
269
| <aname="input_ordered_placement_strategy"></a> [ordered\_placement\_strategy](#input\_ordered\_placement\_strategy)| Service level strategy rules that are taken into consideration during task placement. List from top to bottom in order of precedence |`any`|`{}`| no |
270
270
| <aname="input_pid_mode"></a> [pid\_mode](#input\_pid\_mode)| Process namespace to use for the containers in the task. The valid values are `host` and `task`|`string`|`null`| no |
271
-
| <aname="input_placement_constraints"></a> [placement\_constraints](#input\_placement\_constraints)| Configuration block for rules that are taken into consideration during task placement (up to max of 10) |`any`|`{}`| no |
271
+
| <aname="input_placement_constraints"></a> [placement\_constraints](#input\_placement\_constraints)| Configuration block for rules that are taken into consideration during task placement (up to max of 10). This is set at the service, see `task_definition_placement_constraints` for setting at the task definition|`any`|`{}`| no |
272
272
| <aname="input_platform_version"></a> [platform\_version](#input\_platform\_version)| Platform version on which to run your service. Only applicable for `launch_type` set to `FARGATE`. Defaults to `LATEST`|`string`|`null`| no |
273
273
| <aname="input_propagate_tags"></a> [propagate\_tags](#input\_propagate\_tags)| Specifies whether to propagate the tags from the task definition or the service to the tasks. The valid values are `SERVICE` and `TASK_DEFINITION`|`string`|`null`| no |
274
274
| <aname="input_proxy_configuration"></a> [proxy\_configuration](#input\_proxy\_configuration)| Configuration block for the App Mesh proxy |`any`|`{}`| no |
@@ -288,6 +288,7 @@ module "ecs_service" {
288
288
| <aname="input_subnet_ids"></a> [subnet\_ids](#input\_subnet\_ids)| List of subnets to associate with the task or service |`list(string)`|`[]`| no |
289
289
| <aname="input_tags"></a> [tags](#input\_tags)| A map of tags to add to all resources |`map(string)`|`{}`| no |
290
290
| <aname="input_task_definition_arn"></a> [task\_definition\_arn](#input\_task\_definition\_arn)| Existing task definition ARN. Required when `create_task_definition` is `false`|`string`|`null`| no |
291
+
| <aname="input_task_definition_placement_constraints"></a> [task\_definition\_placement\_constraints](#input\_task\_definition\_placement\_constraints)| Configuration block for rules that are taken into consideration during task placement (up to max of 10). This is set at the task definition, see `placement_constraints` for setting at the service |`any`|`{}`| no |
291
292
| <aname="input_task_exec_iam_role_arn"></a> [task\_exec\_iam\_role\_arn](#input\_task\_exec\_iam\_role\_arn)| Existing IAM role ARN |`string`|`null`| no |
292
293
| <aname="input_task_exec_iam_role_description"></a> [task\_exec\_iam\_role\_description](#input\_task\_exec\_iam\_role\_description)| Description of the role |`string`|`null`| no |
293
294
| <aname="input_task_exec_iam_role_name"></a> [task\_exec\_iam\_role\_name](#input\_task\_exec\_iam\_role\_name)| Name to use on IAM role created |`string`|`null`| no |
description="Configuration block for rules that are taken into consideration during task placement (up to max of 10)"
138
+
description="Configuration block for rules that are taken into consideration during task placement (up to max of 10). This is set at the service, see `task_definition_placement_constraints` for setting at the task definition"
139
139
type=any
140
140
default={}
141
141
}
@@ -322,12 +322,11 @@ variable "pid_mode" {
322
322
default=null
323
323
}
324
324
325
-
# Shared between service and task definition
326
-
# variable "placement_constraints" {
327
-
# description = "Configuration block for rules that are taken into consideration during task placement (up to max of 10)"
328
-
# type = any
329
-
# default = {}
330
-
# }
325
+
variable"task_definition_placement_constraints" {
326
+
description="Configuration block for rules that are taken into consideration during task placement (up to max of 10). This is set at the task definition, see `placement_constraints` for setting at the service"
327
+
type=any
328
+
default={}
329
+
}
331
330
332
331
variable"proxy_configuration" {
333
332
description="Configuration block for the App Mesh proxy"
0 commit comments