Fixed typos
This commit is contained in:
parent
9028e9d4be
commit
f29a6ec54d
10 changed files with 20 additions and 20 deletions
|
@ -58,7 +58,7 @@ options:
|
||||||
required: false
|
required: false
|
||||||
replace_all_instances:
|
replace_all_instances:
|
||||||
description:
|
description:
|
||||||
- In a rolling fashion, replace all instances with an old launch configuration with one from the current launch configuraiton.
|
- In a rolling fashion, replace all instances with an old launch configuration with one from the current launch configuration.
|
||||||
required: false
|
required: false
|
||||||
version_added: "1.8"
|
version_added: "1.8"
|
||||||
default: False
|
default: False
|
||||||
|
|
|
@ -58,7 +58,7 @@ options:
|
||||||
version_added: "1.6"
|
version_added: "1.6"
|
||||||
health_check:
|
health_check:
|
||||||
description:
|
description:
|
||||||
- An associative array of health check configuration settigs (see example)
|
- An associative array of health check configuration settings (see example)
|
||||||
require: false
|
require: false
|
||||||
default: None
|
default: None
|
||||||
region:
|
region:
|
||||||
|
@ -101,7 +101,7 @@ options:
|
||||||
version_added: "1.8"
|
version_added: "1.8"
|
||||||
cross_az_load_balancing:
|
cross_az_load_balancing:
|
||||||
description:
|
description:
|
||||||
- Distribute load across all configured Availablity Zones
|
- Distribute load across all configured Availability Zones
|
||||||
required: false
|
required: false
|
||||||
default: "no"
|
default: "no"
|
||||||
choices: ["yes", "no"]
|
choices: ["yes", "no"]
|
||||||
|
@ -193,7 +193,7 @@ EXAMPLES = """
|
||||||
purge_listeners: no
|
purge_listeners: no
|
||||||
|
|
||||||
# Normally, this module will leave availability zones that are enabled
|
# Normally, this module will leave availability zones that are enabled
|
||||||
# on the ELB alone. If purge_zones is true, then any extreneous zones
|
# on the ELB alone. If purge_zones is true, then any extraneous zones
|
||||||
# will be removed
|
# will be removed
|
||||||
- local_action:
|
- local_action:
|
||||||
module: ec2_elb_lb
|
module: ec2_elb_lb
|
||||||
|
@ -428,7 +428,7 @@ class ElbManager(object):
|
||||||
existing_listener_found = None
|
existing_listener_found = None
|
||||||
for existing_listener in self.elb.listeners:
|
for existing_listener in self.elb.listeners:
|
||||||
# Since ELB allows only one listener on each incoming port, a
|
# Since ELB allows only one listener on each incoming port, a
|
||||||
# single match on the incomping port is all we're looking for
|
# single match on the incoming port is all we're looking for
|
||||||
if existing_listener[0] == listener['load_balancer_port']:
|
if existing_listener[0] == listener['load_balancer_port']:
|
||||||
existing_listener_found = self._api_listener_as_tuple(existing_listener)
|
existing_listener_found = self._api_listener_as_tuple(existing_listener)
|
||||||
break
|
break
|
||||||
|
@ -437,7 +437,7 @@ class ElbManager(object):
|
||||||
# Does it match exactly?
|
# Does it match exactly?
|
||||||
if listener_as_tuple != existing_listener_found:
|
if listener_as_tuple != existing_listener_found:
|
||||||
# The ports are the same but something else is different,
|
# The ports are the same but something else is different,
|
||||||
# so we'll remove the exsiting one and add the new one
|
# so we'll remove the existing one and add the new one
|
||||||
listeners_to_remove.append(existing_listener_found)
|
listeners_to_remove.append(existing_listener_found)
|
||||||
listeners_to_add.append(listener_as_tuple)
|
listeners_to_add.append(listener_as_tuple)
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -29,7 +29,7 @@ options:
|
||||||
required: true
|
required: true
|
||||||
choices: ['present', 'absent']
|
choices: ['present', 'absent']
|
||||||
name:
|
name:
|
||||||
desciption:
|
description:
|
||||||
- Unique name for the alarm
|
- Unique name for the alarm
|
||||||
required: true
|
required: true
|
||||||
metric:
|
metric:
|
||||||
|
@ -71,7 +71,7 @@ options:
|
||||||
options: ['Seconds','Microseconds','Milliseconds','Bytes','Kilobytes','Megabytes','Gigabytes','Terabytes','Bits','Kilobits','Megabits','Gigabits','Terabits','Percent','Count','Bytes/Second','Kilobytes/Second','Megabytes/Second','Gigabytes/Second','Terabytes/Second','Bits/Second','Kilobits/Second','Megabits/Second','Gigabits/Second','Terabits/Second','Count/Second','None']
|
options: ['Seconds','Microseconds','Milliseconds','Bytes','Kilobytes','Megabytes','Gigabytes','Terabytes','Bits','Kilobits','Megabits','Gigabits','Terabits','Percent','Count','Bytes/Second','Kilobytes/Second','Megabytes/Second','Gigabytes/Second','Terabytes/Second','Bits/Second','Kilobits/Second','Megabits/Second','Gigabits/Second','Terabits/Second','Count/Second','None']
|
||||||
description:
|
description:
|
||||||
description:
|
description:
|
||||||
- A longer desciption of the alarm
|
- A longer description of the alarm
|
||||||
required: false
|
required: false
|
||||||
dimensions:
|
dimensions:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -23,7 +23,7 @@ options:
|
||||||
- Name of the associated autoscaling group
|
- Name of the associated autoscaling group
|
||||||
required: true
|
required: true
|
||||||
adjustment_type:
|
adjustment_type:
|
||||||
desciption:
|
description:
|
||||||
- The type of change in capacity of the autoscaling group
|
- The type of change in capacity of the autoscaling group
|
||||||
required: false
|
required: false
|
||||||
choices: ['ChangeInCapacity','ExactCapacity','PercentChangeInCapacity']
|
choices: ['ChangeInCapacity','ExactCapacity','PercentChangeInCapacity']
|
||||||
|
|
|
@ -34,12 +34,12 @@ options:
|
||||||
default: null
|
default: null
|
||||||
subscription_id:
|
subscription_id:
|
||||||
description:
|
description:
|
||||||
- azure subscription id. Overrides the AZURE_SUBSCRIPTION_ID environement variable.
|
- azure subscription id. Overrides the AZURE_SUBSCRIPTION_ID environment variable.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
management_cert_path:
|
management_cert_path:
|
||||||
description:
|
description:
|
||||||
- path to an azure management certificate associated with the subscription id. Overrides the AZURE_CERT_PATH environement variable.
|
- path to an azure management certificate associated with the subscription id. Overrides the AZURE_CERT_PATH environment variable.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
storage_account:
|
storage_account:
|
||||||
|
@ -184,7 +184,7 @@ AZURE_ROLE_SIZES = ['ExtraSmall',
|
||||||
'Standard_D14',
|
'Standard_D14',
|
||||||
'Standard_G1',
|
'Standard_G1',
|
||||||
'Standard_G2',
|
'Standard_G2',
|
||||||
'Sandard_G3',
|
'Standard_G3',
|
||||||
'Standard_G4',
|
'Standard_G4',
|
||||||
'Standard_G5']
|
'Standard_G5']
|
||||||
|
|
||||||
|
@ -398,7 +398,7 @@ def terminate_virtual_machine(module, azure):
|
||||||
|
|
||||||
|
|
||||||
def get_azure_creds(module):
|
def get_azure_creds(module):
|
||||||
# Check modul args for credentials, then check environment vars
|
# Check module args for credentials, then check environment vars
|
||||||
subscription_id = module.params.get('subscription_id')
|
subscription_id = module.params.get('subscription_id')
|
||||||
if not subscription_id:
|
if not subscription_id:
|
||||||
subscription_id = os.environ.get('AZURE_SUBSCRIPTION_ID', None)
|
subscription_id = os.environ.get('AZURE_SUBSCRIPTION_ID', None)
|
||||||
|
|
|
@ -639,7 +639,7 @@ class DockerManager(object):
|
||||||
|
|
||||||
self.docker_py_versioninfo = get_docker_py_versioninfo()
|
self.docker_py_versioninfo = get_docker_py_versioninfo()
|
||||||
|
|
||||||
def _check_capabilties(self):
|
def _check_capabilities(self):
|
||||||
"""
|
"""
|
||||||
Create a list of available capabilities
|
Create a list of available capabilities
|
||||||
"""
|
"""
|
||||||
|
@ -660,7 +660,7 @@ class DockerManager(object):
|
||||||
we lack the capability.
|
we lack the capability.
|
||||||
"""
|
"""
|
||||||
if not self._capabilities:
|
if not self._capabilities:
|
||||||
self._check_capabilties()
|
self._check_capabilities()
|
||||||
|
|
||||||
if capability in self._capabilities:
|
if capability in self._capabilities:
|
||||||
return True
|
return True
|
||||||
|
@ -737,7 +737,7 @@ class DockerManager(object):
|
||||||
elif p_len == 3:
|
elif p_len == 3:
|
||||||
# Bind `container_port` of the container to port `parts[1]` on
|
# Bind `container_port` of the container to port `parts[1]` on
|
||||||
# IP `parts[0]` of the host machine. If `parts[1]` empty bind
|
# IP `parts[0]` of the host machine. If `parts[1]` empty bind
|
||||||
# to a dynamically allocacted port of IP `parts[0]`.
|
# to a dynamically allocated port of IP `parts[0]`.
|
||||||
bind = (parts[0], int(parts[1])) if parts[1] else (parts[0],)
|
bind = (parts[0], int(parts[1])) if parts[1] else (parts[0],)
|
||||||
|
|
||||||
if container_port in binds:
|
if container_port in binds:
|
||||||
|
|
|
@ -60,7 +60,7 @@ options:
|
||||||
default: '{}'
|
default: '{}'
|
||||||
expiration:
|
expiration:
|
||||||
description:
|
description:
|
||||||
- Time limit (in seconds) for the URL generated and returned by GCA when performing a mode=put or mode=get_url operation. This url is only avaialbe when public-read is the acl for the object.
|
- Time limit (in seconds) for the URL generated and returned by GCA when performing a mode=put or mode=get_url operation. This url is only available when public-read is the acl for the object.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
mode:
|
mode:
|
||||||
|
|
|
@ -22,7 +22,7 @@ module: gce_net
|
||||||
version_added: "1.5"
|
version_added: "1.5"
|
||||||
short_description: create/destroy GCE networks and firewall rules
|
short_description: create/destroy GCE networks and firewall rules
|
||||||
description:
|
description:
|
||||||
- This module can create and destroy Google Compue Engine networks and
|
- This module can create and destroy Google Compute Engine networks and
|
||||||
firewall rules U(https://developers.google.com/compute/docs/networking).
|
firewall rules U(https://developers.google.com/compute/docs/networking).
|
||||||
The I(name) parameter is reserved for referencing a network while the
|
The I(name) parameter is reserved for referencing a network while the
|
||||||
I(fwname) parameter is used to reference firewall rules.
|
I(fwname) parameter is used to reference firewall rules.
|
||||||
|
|
|
@ -33,7 +33,7 @@ extends_documentation_fragment: openstack
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Authenticate to the cloud and retreive the service catalog
|
# Authenticate to the cloud and retrieve the service catalog
|
||||||
- os_auth:
|
- os_auth:
|
||||||
cloud: rax-dfw
|
cloud: rax-dfw
|
||||||
- debug: var=service_catalog
|
- debug: var=service_catalog
|
||||||
|
|
|
@ -129,7 +129,7 @@ EXAMPLES = """
|
||||||
# Creates database user 'bob' and password '12345' with all database privileges and 'WITH GRANT OPTION'
|
# Creates database user 'bob' and password '12345' with all database privileges and 'WITH GRANT OPTION'
|
||||||
- mysql_user: name=bob password=12345 priv=*.*:ALL,GRANT state=present
|
- mysql_user: name=bob password=12345 priv=*.*:ALL,GRANT state=present
|
||||||
|
|
||||||
# Modifiy user Bob to require SSL connections. Note that REQUIRESSL is a special privilege that should only apply to *.* by itself.
|
# Modify user Bob to require SSL connections. Note that REQUIRESSL is a special privilege that should only apply to *.* by itself.
|
||||||
- mysql_user: name=bob append_privs=true priv=*.*:REQUIRESSL state=present
|
- mysql_user: name=bob append_privs=true priv=*.*:REQUIRESSL state=present
|
||||||
|
|
||||||
# Ensure no user named 'sally' exists, also passing in the auth credentials.
|
# Ensure no user named 'sally' exists, also passing in the auth credentials.
|
||||||
|
|
Loading…
Reference in a new issue