mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
25323155d2
* module_utils: Clean up parameter types (cloud) This PR includes: - Parameter types added - Copyright format fixes - Short license statement - Description fixes (only for a few files, then I stopped :-)) * More cloud stuff * Fix reported issue * Fix quotes * Use correct type * Fix quotes * Fix quotes * Fix quotes * Fix typo * Fix boolean
18 lines
585 B
Python
18 lines
585 B
Python
# -*- 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)
|
|
|
|
|
|
class ModuleDocFragment(object):
|
|
|
|
# EC2 only documentation fragment
|
|
DOCUMENTATION = r'''
|
|
options:
|
|
region:
|
|
description:
|
|
- 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)
|
|
type: str
|
|
aliases: [ aws_region, ec2_region ]
|
|
'''
|