mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
keypair is not absolutely required when creating ec2 instances
This commit is contained in:
parent
ca112f64a6
commit
8fb5a66944
1 changed files with 1 additions and 3 deletions
|
@ -25,7 +25,7 @@ options:
|
||||||
key_name:
|
key_name:
|
||||||
description:
|
description:
|
||||||
- key pair to use on the instance
|
- key pair to use on the instance
|
||||||
required: true
|
required: false
|
||||||
default: null
|
default: null
|
||||||
aliases: ['keypair']
|
aliases: ['keypair']
|
||||||
id:
|
id:
|
||||||
|
@ -655,8 +655,6 @@ def main():
|
||||||
|
|
||||||
elif module.params.get('state') == 'present':
|
elif module.params.get('state') == 'present':
|
||||||
# Changed is always set to true when provisioning new instances
|
# Changed is always set to true when provisioning new instances
|
||||||
if not module.params.get('key_name'):
|
|
||||||
module.fail_json(msg='key_name parameter is required for new instance')
|
|
||||||
if not module.params.get('image'):
|
if not module.params.get('image'):
|
||||||
module.fail_json(msg='image parameter is required for new instance')
|
module.fail_json(msg='image parameter is required for new instance')
|
||||||
(instance_dict_array, new_instance_ids, changed) = create_instances(module, ec2)
|
(instance_dict_array, new_instance_ids, changed) = create_instances(module, ec2)
|
||||||
|
|
Loading…
Reference in a new issue