Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
Signed-off-by: Alina Buzachis <[email protected]>
  • Loading branch information
alinabuzachis committed Aug 29, 2022
1 parent cb9716e commit 41b2318
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 1 deletion.
26 changes: 26 additions & 0 deletions plugins/modules/ecs_taskdefinition.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,6 +493,32 @@
description: The type of resource to assign to a container.
type: str
choices: ['GPU', 'InferenceAccelerator']
firelensConfiguration:
description:
- The FireLens configuration for the container.
- This is used to specify and configure a log router for container logs.
required: False
type: dict
suboptions:
type:
description:
- The log router to use. The valid values are C(fluentd) or C(fluentbit).
required: False
type: str
choices:
- fluentd
- fluentbit
options:
description:
- The options to use when configuring the log router.
- This field is optional and can be used to specify a custom configuration
file or to add additional metadata, such as the task, task definition, cluster,
and container instance details to the log event.
- If specified, the syntax to use is
C({"enable-ecs-log-metadata":"true|false","config-file-type:"s3|file","config-file-value":"arn:aws:s3:::mybucket/fluent.conf|filepath"}).
- For more information, see U(https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html#firelens-taskdef).
required: False
type: dict
network_mode:
description:
- The Docker networking mode to use for the containers in the task.
Expand Down
53 changes: 52 additions & 1 deletion plugins/modules/ecs_taskdefinition_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,58 @@
description: The configuration options to send to the log driver.
returned: when present
type: str
healthCheck:
description: The container health check command and associated configuration parameters for the container.
returned: when present
type: dict
contains:
command:
description: A string array representing the command that the container runs to determine if it is healthy.
type: list
interval:
description: The time period in seconds between each health check execution.
type: int
timeout:
description: The time period in seconds to wait for a health check to succeed before it is considered a failure.
type: int
retries:
description: The number of times to retry a failed health check before the container is considered unhealthy.
type: int
startPeriod:
description: The optional grace period to provide containers time to bootstrap before failed.
type: int
resourceRequirements:
description: The type and amount of a resource to assign to a container.
returned: when present
type: dict
contains:
value:
description: The value for the specified resource type.
type: str
type:
description: The type of resource to assign to a container.
type: str
systemControls:
description: A list of namespaced kernel parameters to set in the container.
returned: when present
type: dict
contains:
namespace:
description: TThe namespaced kernel.
type: str
value:
description: The value for the namespaced kernel.
type: str
firelensConfiguration:
description: The FireLens configuration for the container.
returned: when present
contains:
type:
description: The log router.
type: str
options:
description: The options to use when configuring the log router.
type: dict
family:
description: The family of your task definition, used as the definition name
returned: always
Expand Down

0 comments on commit 41b2318

Please sign in to comment.