1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

The payment term param in the Linode module is an int.

This commit is contained in:
Jan Urbański 2013-09-26 18:23:21 +02:00
parent 0ee236bf57
commit 7fa92054fe

View file

@ -440,7 +440,7 @@ def main():
distribution = dict(type='int'),
datacenter = dict(type='int'),
linode_id = dict(type='int', aliases=['lid']),
payment_term = dict(default=1, choices=[1, 12, 24]),
payment_term = dict(type='int', default=1, choices=[1, 12, 24]),
password = dict(type='str'),
ssh_pub_key = dict(type='str'),
swap = dict(type='int', default=512),