mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Annotate boto3 dependency in the standard location.
This commit is contained in:
parent
b3e7794c08
commit
64692e7a89
1 changed files with 3 additions and 2 deletions
|
@ -24,7 +24,7 @@ DOCUMENTATION = '''
|
||||||
module: ec2_ami_copy
|
module: ec2_ami_copy
|
||||||
short_description: copies AMI between AWS regions, return new image id
|
short_description: copies AMI between AWS regions, return new image id
|
||||||
description:
|
description:
|
||||||
- Copies AMI from a source region to a destination region. (Since version 2.3 this module depends on boto3)
|
- Copies AMI from a source region to a destination region. B(Since version 2.3 this module depends on boto3.)
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
options:
|
options:
|
||||||
source_region:
|
source_region:
|
||||||
|
@ -73,11 +73,12 @@ options:
|
||||||
- A hash/dictionary of tags to add to the new copied AMI; '{"key":"value"}' and '{"key":"value","key":"value"}'
|
- A hash/dictionary of tags to add to the new copied AMI; '{"key":"value"}' and '{"key":"value","key":"value"}'
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
|
|
||||||
author: "Amir Moulavi <amir.moulavi@gmail.com>, Tim C <defunct@defunct.io>"
|
author: "Amir Moulavi <amir.moulavi@gmail.com>, Tim C <defunct@defunct.io>"
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- aws
|
- aws
|
||||||
- ec2
|
- ec2
|
||||||
|
requirements:
|
||||||
|
- boto3
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
|
Loading…
Reference in a new issue