Updating version_added for new spot_type param in ec2 module
Also made sure 'choices' were set on the module param, to catch errors in user's playbooks, etc.
This commit is contained in:
parent
0df5f6ec02
commit
65c63b3afa
1 changed files with 2 additions and 1 deletions
|
@ -77,6 +77,7 @@ options:
|
|||
default: null
|
||||
aliases: []
|
||||
spot_type:
|
||||
version_added: "2.0"
|
||||
description:
|
||||
- Type of spot request; one of "one-time" or "persistent". Defaults to "one-time" if not supplied.
|
||||
required: false
|
||||
|
@ -1229,7 +1230,7 @@ def main():
|
|||
zone = dict(aliases=['aws_zone', 'ec2_zone']),
|
||||
instance_type = dict(aliases=['type']),
|
||||
spot_price = dict(),
|
||||
spot_type = dict(default='one-time'),
|
||||
spot_type = dict(default='one-time', choices=["one-time", "persistent"]),
|
||||
image = dict(),
|
||||
kernel = dict(),
|
||||
count = dict(type='int', default='1'),
|
||||
|
|
Loading…
Reference in a new issue