mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
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:
committed by
Matt Clay
parent
cb776e6190
commit
4239922d07
@@ -76,6 +76,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
|
||||
@@ -1188,7 +1189,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'),
|
||||
|
||||
Reference in New Issue
Block a user