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
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -162,13 +162,15 @@ No modules.
162
162
| <aname="input_task_container_secrets"></a> [task\_container\_secrets](#input\_task\_container\_secrets)| The secrets variables to pass to a container. |`list(map(string))`|`null`| no |
163
163
| <aname="input_task_container_working_directory"></a> [task\_container\_working\_directory](#input\_task\_container\_working\_directory)| The working directory to run commands inside the container. |`string`|`""`| no |
164
164
| <aname="input_task_definition_cpu"></a> [task\_definition\_cpu](#input\_task\_definition\_cpu)| Amount of CPU to reserve for the task. |`number`|`256`| no |
165
+
| <aname="input_task_definition_ephemeral_storage"></a> [task\_definition\_ephemeral\_storage](#input\_task\_definition\_ephemeral\_storage)| The total amount, in GiB, of ephemeral storage to set for the task. |`number`|`0`| no |
165
166
| <aname="input_task_definition_memory"></a> [task\_definition\_memory](#input\_task\_definition\_memory)| The soft limit (in MiB) of memory to reserve for the task. |`number`|`512`| no |
166
-
| <aname="input_task_health_check"></a> [task\_health\_check](#input\_task\_health\_check)| An optional healthcheck definition for the task |`object({ command = list(string), interval = number, timeout = number, retries = number, startPeriod = number })`|`null`| no |
167
+
| <aname="input_task_health_check"></a> [task\_health\_check](#input\_task\_health\_check)| An optional healthcheck definition for the task |`map(number)`|`null`| no |
168
+
| <aname="input_task_health_command"></a> [task\_health\_command](#input\_task\_health\_command)| A string array representing the command that the container runs to determine if it is healthy. |`list(string)`| <pre>[<br> ""<br>]</pre> | no |
167
169
| <aname="input_task_host_port"></a> [task\_host\_port](#input\_task\_host\_port)| The port number on the container instance to reserve for your container. |`number`|`0`| no |
168
170
| <aname="input_task_mount_points"></a> [task\_mount\_points](#input\_task\_mount\_points)| The mount points for data volumes in your container. Each object inside the list requires "sourceVolume", "containerPath" and "readOnly". For more information see https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html|`list(object({ sourceVolume = string, containerPath = string, readOnly = bool }))`|`null`| no |
171
+
| <aname="input_task_pseudo_terminal"></a> [task\_pseudo\_terminal](#input\_task\_pseudo\_terminal)| Allocate TTY in the container |`bool`|`null`| no |
169
172
| <aname="input_task_start_timeout"></a> [task\_start\_timeout](#input\_task\_start\_timeout)| Time duration (in seconds) to wait before giving up on resolving dependencies for a container. If this parameter is not specified, the default value of 3 minutes is used (fargate). |`number`|`null`| no |
170
173
| <aname="input_task_stop_timeout"></a> [task\_stop\_timeout](#input\_task\_stop\_timeout)| Time duration (in seconds) to wait before the container is forcefully killed if it doesn't exit normally on its own. The max stop timeout value is 120 seconds and if the parameter is not specified, the default value of 30 seconds is used. |`number`|`null`| no |
171
-
| <aname="input_task_pseudo_terminal"></a> [task\_pseudo\_terminal](#input\_task\_pseudo\_terminal)| Allocate TTY to the container's task. |`bool`|`null`| no |
172
174
| <aname="input_volume"></a> [volume](#input\_volume)| (Optional) A set of volume blocks that containers in your task may use. This is a list of maps, where each map should contain "name", "host\_path", "docker\_volume\_configuration" and "efs\_volume\_configuration". Full set of options can be found at https://www.terraform.io/docs/providers/aws/r/ecs_task_definition.html|`list`|`[]`| no |
| <aname="input_wait_for_steady_state"></a> [wait\_for\_steady\_state](#input\_wait\_for\_steady\_state)| If true, Terraform will wait for the service to reach a steady state (like aws ecs wait services-stable) before continuing. |`bool`|`false`| no |
0 commit comments