Skip to content

Commit

Permalink
* Fix documentation and imports
Browse files Browse the repository at this point in the history
Signed-off-by: Alina Buzachis <abuzachis@redhat.com>
  • Loading branch information
alinabuzachis committed Apr 13, 2021
1 parent d9255cd commit 9b427c7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions plugins/modules/ecs_taskdefinition.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,13 @@
type: str
required: true
condition:
description: The dependency condition of the container.
description: The dependency condition of the container.
type: str
required: true
choices: ["start", "complete", "success", "healthy"]
extends_documentation_fragment:
- amazon.aws.aws
- amazon.aws.ec2
'''

EXAMPLES = r'''
Expand Down Expand Up @@ -350,7 +349,7 @@ def main():
launch_type=dict(required=False, choices=['EC2', 'FARGATE']),
cpu=dict(),
memory=dict(required=False, type='str'),
depends_on=dict(required=False, type='list', elements='dict'),
depends_on=dict(required=False, type='list', elements='dict'),
)

module = AnsibleAWSModule(argument_spec=argument_spec,
Expand Down

0 comments on commit 9b427c7

Please sign in to comment.