[AWS] Add helpful failure message when using wrong lb module (#40433)

Remove the default empty dict parameter for tags.
This commit is contained in:
Rob 2018-05-26 03:10:39 +10:00 committed by Ryan Brown
parent f16ec4e64c
commit 1b45a755a2
2 changed files with 7 additions and 1 deletions

View file

@ -509,7 +509,7 @@ def main():
security_groups=dict(type='list'),
scheme=dict(default='internet-facing', choices=['internet-facing', 'internal']),
state=dict(choices=['present', 'absent'], type='str'),
tags=dict(default={}, type='dict'),
tags=dict(type='dict'),
wait_timeout=dict(type='int'),
wait=dict(default=False, type='bool')
)