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
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,10 +67,11 @@ In order to run all checks at any point run the following command:
67
67
| <aname="input_container_cpu"></a> [container\_cpu](#input\_container\_cpu)| (Optional) The number of cpu units to reserve for the container. This is optional for tasks using Fargate launch type and the total amount of container\_cpu of all containers in a task will need to be lower than the task-level cpu value |`number`|`1024`| no |
68
68
| <aname="input_container_definition"></a> [container\_definition](#input\_container\_definition)| Container definition overrides which allows for extra keys or overriding existing keys. |`map(any)`|`{}`| no |
69
69
| <aname="input_container_depends_on"></a> [container\_depends\_on](#input\_container\_depends\_on)| The dependencies defined for container startup and shutdown. A container can contain multiple dependencies. When a dependency is defined for container startup, for container shutdown it is reversed. The condition can be one of START, COMPLETE, SUCCESS or HEALTHY | <pre>list(object({<br> containerName = string<br> condition = string<br> }))</pre> |`[]`| no |
70
-
| <aname="input_container_image"></a> [container\_image](#input\_container\_image)| The image used to start the container. Images in the Docker Hub registry available by default |`string`|n/a|yes|
70
+
| <aname="input_container_image"></a> [container\_image](#input\_container\_image)| The image used to start the container. Images in the Docker Hub registry available by default |`string`|`null`|no|
71
71
| <aname="input_container_memory"></a> [container\_memory](#input\_container\_memory)| (Optional) The amount of memory (in MiB) to allow the container to use. This is a hard limit, if the container attempts to exceed the container\_memory, the container is killed. This field is optional for Fargate launch type and the total amount of container\_memory of all containers in a task will need to be lower than the task memory value |`number`|`4096`| no |
72
72
| <aname="input_container_memory_reservation"></a> [container\_memory\_reservation](#input\_container\_memory\_reservation)| (Optional) The amount of memory (in MiB) to reserve for the container. If container needs to exceed this threshold, it can do so up to the set container\_memory hard limit |`number`|`2048`| no |
73
-
| <aname="input_container_name"></a> [container\_name](#input\_container\_name)| The name of the container. Up to 255 characters ([a-z], [A-Z], [0-9], -, \_ allowed) |`string`| n/a | yes |
73
+
| <aname="input_container_name"></a> [container\_name](#input\_container\_name)| The name of the container. Up to 255 characters ([a-z], [A-Z], [0-9], -, \_ allowed) |`string`|`null`| no |
74
+
| <aname="input_containers"></a> [containers](#input\_containers)| Container definitions to use for the task. If this is used, all other container options will be ignored. |`list(any)`|`[]`| no |
74
75
| <aname="input_disable_networking"></a> [disable\_networking](#input\_disable\_networking)| When this parameter is true, networking is disabled within the container. |`bool`|`null`| no |
75
76
| <aname="input_dns_search_domains"></a> [dns\_search\_domains](#input\_dns\_search\_domains)| Container DNS search domains. A list of DNS search domains that are presented to the container |`list(string)`|`[]`| no |
76
77
| <aname="input_dns_servers"></a> [dns\_servers](#input\_dns\_servers)| Container DNS servers. This is a list of strings specifying the IP addresses of the DNS servers |`list(string)`|`[]`| no |
description="Container definitions to use for the task. If this is used, all other container options will be ignored."
50
+
default=[]
51
+
}
52
+
45
53
variable"port_mappings" {
46
54
description="The port mappings to configure for the container. This is a list of maps. Each map should contain \"containerPort\", \"hostPort\", and \"protocol\", where \"protocol\" is one of \"tcp\" or \"udp\". If using containers in a task with the awsvpc or host network mode, the hostPort can either be left blank or set to the same value as the containerPort"
0 commit comments