Merge pull request #4264 from wulczer/fix-linode-param-type
The payment term param in the Linode module is an int.
This commit is contained in:
commit
40d7b59f36
1 changed files with 1 additions and 1 deletions
|
@ -440,7 +440,7 @@ def main():
|
||||||
distribution = dict(type='int'),
|
distribution = dict(type='int'),
|
||||||
datacenter = dict(type='int'),
|
datacenter = dict(type='int'),
|
||||||
linode_id = dict(type='int', aliases=['lid']),
|
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'),
|
password = dict(type='str'),
|
||||||
ssh_pub_key = dict(type='str'),
|
ssh_pub_key = dict(type='str'),
|
||||||
swap = dict(type='int', default=512),
|
swap = dict(type='int', default=512),
|
||||||
|
|
Loading…
Reference in a new issue