summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDag Wieers <dag@wieers.com>2018-09-20 02:13:29 +0200
committerGitHub <noreply@github.com>2018-09-20 02:13:29 +0200
commit197ddd3c4575a48ad12aee62272b4f64ad0b93e0 (patch)
tree875070ab57d365042435d7312304fe8e85247453 /lib
parent83645963fb8eeda6dccc53a838b5a529de20de04 (diff)
downloadansible-197ddd3c4575a48ad12aee62272b4f64ad0b93e0.tar.gz
Fix incorrect type in arg_spec
Diffstat (limited to 'lib')
-rw-r--r--lib/ansible/modules/cloud/amazon/efs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/modules/cloud/amazon/efs.py b/lib/ansible/modules/cloud/amazon/efs.py
index 69583b1dde..baeae63ff2 100644
--- a/lib/ansible/modules/cloud/amazon/efs.py
+++ b/lib/ansible/modules/cloud/amazon/efs.py
@@ -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)
))