From 64692e7a8960979c98b9107668751c8dbecb8926 Mon Sep 17 00:00:00 2001 From: Jasper Lievisse Adriaanse Date: Fri, 13 Jan 2017 20:16:57 +0100 Subject: [PATCH] Annotate boto3 dependency in the standard location. --- lib/ansible/modules/cloud/amazon/ec2_ami_copy.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/cloud/amazon/ec2_ami_copy.py b/lib/ansible/modules/cloud/amazon/ec2_ami_copy.py index 3cb8458b65a..8d5363357ad 100644 --- a/lib/ansible/modules/cloud/amazon/ec2_ami_copy.py +++ b/lib/ansible/modules/cloud/amazon/ec2_ami_copy.py @@ -24,7 +24,7 @@ DOCUMENTATION = ''' module: ec2_ami_copy short_description: copies AMI between AWS regions, return new image id 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" options: 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"}' required: false default: null - author: "Amir Moulavi , Tim C " extends_documentation_fragment: - aws - ec2 +requirements: + - boto3 ''' EXAMPLES = '''