From d889dfb329beecd82339ad5470a90c83c1bbb287 Mon Sep 17 00:00:00 2001 From: Alessandro Marino <15277744+alessandromr@users.noreply.github.com> Date: Tue, 16 Mar 2021 15:26:08 +0100 Subject: [PATCH] Fix wrong variables type (#50) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c35873f..6cb8a29 100644 --- a/README.md +++ b/README.md @@ -153,14 +153,14 @@ By default, this module creates a task definition with a single container defini | repositoryCredentials | The private repository authentication credentials to use | `map(string)` | `{}` | no | | requires\_compatibilities | The launch type required by the task | `list(string)` | `[]` | no | | resourceRequirements | The type and amount of a resource to assign to a container | `list(string)` | `[]` | no | -| secrets | The secrets to pass to the container | `list(string)` | `[]` | no | +| secrets | The secrets to pass to the container | `list(map(string))` | `[]` | no | | systemControls | A list of namespaced kernel parameters to set in the container | `list(string)` | `[]` | no | | tags | The metadata that you apply to the task definition to help you categorize and organize them | `map(string)` | `{}` | no | | task\_role\_arn | The short name or full Amazon Resource Name (ARN) of the IAM role that containers in this task can assume | `string` | `""` | no | | ulimits | A list of ulimits to set in the container | `list(any)` | `[]` | no | | user | The user name to use inside the container | `string` | `""` | no | | volumes | A list of volume definitions in JSON format that containers in your task may use | `list(any)` | `[]` | no | -| volumesFrom | Data volumes to mount from another container | `list(string)` | `[]` | no | +| volumesFrom | Data volumes to mount from another container | `list(object)` | `[]` | no | | workingDirectory | The working directory in which to run commands inside the container | `string` | `""` | no | ## Outputs