mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix incorrect type in arg_spec
This commit is contained in:
parent
83645963fb
commit
197ddd3c45
1 changed files with 1 additions and 1 deletions
|
@ -705,7 +705,7 @@ def main():
|
|||
targets=dict(required=False, type="list", default=[]),
|
||||
performance_mode=dict(required=False, type='str', choices=["general_purpose", "max_io"], default="general_purpose"),
|
||||
throughput_mode=dict(required=False, type='str', choices=["bursting", "provisioned"], default=None),
|
||||
provisioned_throughput_in_mibps=dict(required=False, type=float),
|
||||
provisioned_throughput_in_mibps=dict(required=False, type='float'),
|
||||
wait=dict(required=False, type="bool", default=False),
|
||||
wait_timeout=dict(required=False, type="int", default=0)
|
||||
))
|
||||
|
|
Loading…
Reference in a new issue