2019-02-15 12:21:20 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright: (c) 2015, Ansible, Inc
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
2015-10-07 19:52:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ModuleDocFragment(object):
|
|
|
|
|
|
|
|
# EC2 only documentation fragment
|
2019-02-15 12:21:20 +00:00
|
|
|
DOCUMENTATION = r'''
|
2015-10-07 19:52:06 +00:00
|
|
|
options:
|
|
|
|
region:
|
|
|
|
description:
|
2017-02-24 08:01:03 +00:00
|
|
|
- The AWS region to use. If not specified then the value of the AWS_REGION or EC2_REGION environment variable, if any, is used.
|
|
|
|
See U(http://docs.aws.amazon.com/general/latest/gr/rande.html#ec2_region)
|
2019-02-15 12:21:20 +00:00
|
|
|
type: str
|
|
|
|
aliases: [ aws_region, ec2_region ]
|
|
|
|
'''
|