mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Added choice validation for state arg
fixes traceback on invalid state arg
This commit is contained in:
parent
ada424078b
commit
548ab163f5
1 changed files with 1 additions and 1 deletions
|
@ -1195,7 +1195,7 @@ def main():
|
||||||
instance_profile_name = dict(),
|
instance_profile_name = dict(),
|
||||||
instance_ids = dict(type='list', aliases=['instance_id']),
|
instance_ids = dict(type='list', aliases=['instance_id']),
|
||||||
source_dest_check = dict(type='bool', default=True),
|
source_dest_check = dict(type='bool', default=True),
|
||||||
state = dict(default='present'),
|
state = dict(default='present', choices=['present', 'absent', 'running', 'stopped']),
|
||||||
exact_count = dict(type='int', default=None),
|
exact_count = dict(type='int', default=None),
|
||||||
count_tag = dict(),
|
count_tag = dict(),
|
||||||
volumes = dict(type='list'),
|
volumes = dict(type='list'),
|
||||||
|
|
Loading…
Reference in a new issue