Skip to content

Commit

Permalink
fix default\required signature
Browse files Browse the repository at this point in the history
  • Loading branch information
asaf400 committed Nov 16, 2020
1 parent b7f8ba6 commit 46e50bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/ecs_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ def main():
delay=dict(required=False, type='int', default=10),
repeat=dict(required=False, type='int', default=10),
force_new_deployment=dict(required=False, default=False, type='bool'),
force_deletion=dict(required=True, default=False, type='bool'),
force_deletion=dict(required=False, default=False, type='bool'),
deployment_configuration=dict(required=False, default={}, type='dict'),
placement_constraints=dict(
required=False,
Expand Down

0 comments on commit 46e50bc

Please sign in to comment.