Updating cloud modules with proper github author information

This commit is contained in:
Greg DeKoenigsberg 2015-06-15 14:41:22 -04:00 committed by Matt Clay
commit 18ca7aee07
74 changed files with 111 additions and 60 deletions

View file

@ -94,7 +94,7 @@ options:
required: false
version_added: "2.0"
author: James S. Martin
author: "James S. Martin (@jsmartin)"
extends_documentation_fragment: aws
'''

View file

@ -222,7 +222,10 @@ options:
default: null
aliases: []
author: Seth Vidal, Tim Gerla, Lester Wade
author:
- "Tim Gerla (@tgerla)"
- "Lester Wade (@lwade)"
- "Seth Vidal"
extends_documentation_fragment: aws
'''

View file

@ -87,7 +87,7 @@ options:
default: null
version_added: "2.0"
author: Evan Duffield <eduffield@iacquire.com>
author: "Evan Duffield (@scicoin-project) <eduffield@iacquire.com>"
extends_documentation_fragment: aws
'''

View file

@ -25,7 +25,7 @@ description:
- Can search AMIs with different owners
- Can search by matching tag(s), by AMI name and/or other criteria
- Results can be sorted and sliced
author: Tom Bamford
author: "Tom Bamford (@tombamford)"
notes:
- This module is not backwards compatible with the previous version of the ec2_search_ami module which worked only for Ubuntu AMIs listed on cloud-images.ubuntu.com.
- See the example below for a suggestion of how to search by distro/release.

View file

@ -21,7 +21,7 @@ description:
- Can create or delete AWS Autoscaling Groups
- Works with the ec2_lc module to manage Launch Configurations
version_added: "1.6"
author: Gareth Rushgrove
author: "Gareth Rushgrove (@garethr)"
options:
state:
description:

View file

@ -44,7 +44,7 @@ options:
version_added: "1.6"
extends_documentation_fragment: aws
author: Lorin Hochstein <lorin@nimbisservices.com>
author: "Lorin Hochstein (@lorin) <lorin@nimbisservices.com>"
notes:
- This module will return C(public_ip) on success, which will contain the
public IP address associated with the instance.

View file

@ -25,7 +25,7 @@ description:
if state=absent is passed as an argument.
- Will be marked changed when called only if there are ELBs found to operate on.
version_added: "1.2"
author: John Jarvis
author: "John Jarvis (@jarv)"
options:
state:
description:

View file

@ -22,7 +22,7 @@ description:
- Will be marked changed when called only if state is changed.
short_description: Creates or destroys Amazon ELB.
version_added: "1.5"
author: Jim Dalton
author: "Jim Dalton (@jsdalton)"
options:
state:
description:

View file

@ -36,7 +36,7 @@ description:
The module must be called from within the EC2 instance itself.
notes:
- Parameters to filter on ec2_facts may be added later.
author: "Silviu Dicu <silviudicu@gmail.com>"
author: "Silviu Dicu (@silviud) <silviudicu@gmail.com>"
'''
EXAMPLES = '''

View file

@ -5,6 +5,7 @@
DOCUMENTATION = '''
---
module: ec2_group
author: "Andrew de Quincey (@adq)"
version_added: "1.3"
short_description: maintain an ec2 VPC security group.
description:

View file

@ -46,7 +46,7 @@ options:
version_added: "1.6"
extends_documentation_fragment: aws
author: Vincent Viallet
author: "Vincent Viallet (@zbal)"
'''
EXAMPLES = '''

View file

@ -26,7 +26,7 @@ notes:
after it is changed will not modify the launch configuration on AWS. You must create a new config and assign
it to the ASG instead."
version_added: "1.6"
author: Gareth Rushgrove
author: "Gareth Rushgrove (@garethr)"
options:
state:
description:

View file

@ -21,7 +21,7 @@ description:
- Can create or delete AWS metric alarms
- Metrics you wish to alarm on must already exist
version_added: "1.6"
author: Zacharie Eakin
author: "Zacharie Eakin (@zeekin)"
options:
state:
description:

View file

@ -7,7 +7,7 @@ description:
- Can create or delete scaling policies for autoscaling groups
- Referenced autoscaling groups must already exist
version_added: "1.6"
author: Zacharie Eakin
author: "Zacharie Eakin (@zeekin)"
options:
state:
description:

View file

@ -75,7 +75,7 @@ options:
required: false
version_added: "1.9"
author: Will Thames
author: "Will Thames (@willthames)"
extends_documentation_fragment: aws
'''

View file

@ -42,7 +42,7 @@ options:
default: null
aliases: ['aws_region', 'ec2_region']
author: Lester Wade
author: "Lester Wade (@lwade)"
extends_documentation_fragment: aws
'''

View file

@ -107,7 +107,7 @@ options:
default: present
choices: ['absent', 'present', 'list']
version_added: "1.6"
author: Lester Wade
author: "Lester Wade (@lwade)"
extends_documentation_fragment: aws
'''

View file

@ -100,7 +100,7 @@ options:
required: true
default: null
aliases: ['aws_region', 'ec2_region']
author: Carson Gee
author: "Carson Gee (@carsongee)"
extends_documentation_fragment: aws
'''

View file

@ -22,7 +22,7 @@ description:
- Manage cache clusters in Amazon Elasticache.
- Returns information about the specified cache cluster.
version_added: "1.4"
author: Jim Dalton
author: "Jim Dalton (@jsdalton)"
options:
state:
description:

View file

@ -108,7 +108,9 @@ options:
requirements: [ "boto" ]
notes:
- 'Currently boto does not support the removal of Managed Policies, the module will error out if your user/group/role has managed policies when you try to do state=absent. They will need to be removed manually.'
author: Jonathan I. Davila and Paul Seiffert
author:
- "Jonathan I. Davila (@defionscode)"
- "Paul Seiffert (@seiffert)"
extends_documentation_fragment: aws
'''

View file

@ -72,7 +72,7 @@ options:
requirements: [ "boto" ]
notes:
- 'Currently boto does not support the removal of Managed Policies, the module will not work removing/adding managed policies.'
author: Jonathan I. Davila
author: "Jonathan I. Davila (@defionscode)"
extends_documentation_fragment: aws
'''

View file

@ -244,7 +244,10 @@ options:
requirements:
- "python >= 2.6"
- "boto"
author: Bruce Pennypacker, Will Thames
author:
- "Bruce Pennypacker (@bpennypacker)"
- "Will Thames (@willthames")
'''
# FIXME: the command stuff needs a 'state' like alias to make things consistent -- MPD

View file

@ -67,7 +67,7 @@ options:
required: true
default: null
aliases: ['aws_region', 'ec2_region']
author: Scott Anderson
author: "Scott Anderson (@tastychutney)"
extends_documentation_fragment: aws
'''

View file

@ -53,7 +53,7 @@ options:
required: true
default: null
aliases: ['aws_region', 'ec2_region']
author: Scott Anderson
author: "Scott Anderson (@tastychutney)"
extends_documentation_fragment: aws
'''

View file

@ -93,7 +93,7 @@ options:
required: false
default: false
version_added: "1.9"
author: Bruce Pennypacker
author: "Bruce Pennypacker (@bpennypacker)"
extends_documentation_fragment: aws
'''

View file

@ -110,7 +110,9 @@ options:
version_added: "1.3"
requirements: [ "boto" ]
author: Lester Wade, Ralph Tice
author:
- "Lester Wade (@lwade)"
- "Ralph Tice (@ralph-tice)"
extends_documentation_fragment: aws
'''