Misc typo fixes (#59620)

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/59751/head
Abhijeet Kasurde 5 years ago committed by Sandra McCann
parent 19299f3310
commit f7af4875d3

@ -44,20 +44,20 @@ options:
- A list of source regions being aggregated. - A list of source regions being aggregated.
all_aws_regions: all_aws_regions:
description: description:
- If true, aggreagate existing AWS Config regions and future regions. - If true, aggregate existing AWS Config regions and future regions.
organization_source: organization_source:
description: description:
- The region authorized to collect aggregated data. - The region authorized to collect aggregated data.
suboptions: suboptions:
role_arn: role_arn:
description: description:
- ARN of the IAM role used to retreive AWS Organization details associated with the aggregator account. - ARN of the IAM role used to retrieve AWS Organization details associated with the aggregator account.
aws_regions: aws_regions:
description: description:
- The source regions being aggregated. - The source regions being aggregated.
all_aws_regions: all_aws_regions:
description: description:
- If true, aggreagate existing AWS Config regions and future regions. - If true, aggregate existing AWS Config regions and future regions.
extends_documentation_fragment: extends_documentation_fragment:
- aws - aws
- ec2 - ec2

@ -65,7 +65,7 @@ options:
uid: uid:
version_added: 2.7 version_added: 2.7
description: description:
- uid of the dasboard to export when C(state) is C(export) or C(absent). - uid of the dashboard to export when C(state) is C(export) or C(absent).
path: path:
description: description:
- The path to the json file containing the Grafana dashboard to import or export. - The path to the json file containing the Grafana dashboard to import or export.
@ -423,7 +423,7 @@ def main():
except GrafanaMalformedJson as e: except GrafanaMalformedJson as e:
module.fail_json( module.fail_json(
failed=True, failed=True,
msg="error : json file does not contain a meta section with a slug parameter, or you did'nt specify the slug parameter" msg="error : json file does not contain a meta section with a slug parameter, or you did not specify the slug parameter"
) )
return return
except GrafanaDeleteException as e: except GrafanaDeleteException as e:

@ -50,7 +50,7 @@ options:
- Add a port if it is specified in expected state but not in current state. - Add a port if it is specified in expected state but not in current state.
- Delete a port if it is specified in current state but not in expected state. - Delete a port if it is specified in current state but not in expected state.
- For split action, it represents the ports to be split from current broadcast domain and added to the new broadcast domain. - For split action, it represents the ports to be split from current broadcast domain and added to the new broadcast domain.
- if all ports are removed or splited from a broadcast domain, the broadcast domain will be deleted automatically. - if all ports are removed or split from a broadcast domain, the broadcast domain will be deleted automatically.
''' '''
EXAMPLES = """ EXAMPLES = """
@ -145,7 +145,7 @@ class NetAppOntapBroadcastDomain(object):
""" """
Return details about the broadcast domain Return details about the broadcast domain
:param broadcast_domain: specific broadcast domain to get. :param broadcast_domain: specific broadcast domain to get.
:return: Details about the broadcas domain. None if not found. :return: Details about the broadcast domain. None if not found.
:rtype: dict :rtype: dict
""" """
if broadcast_domain is None: if broadcast_domain is None:

@ -25,7 +25,7 @@ options:
- api key of grafana. - api key of grafana.
- when C(grafana_api_key) is set, the options C(grafan_user), C(grafana_password) and C(grafana_org_id) are ignored. - when C(grafana_api_key) is set, the options C(grafan_user), C(grafana_password) and C(grafana_org_id) are ignored.
- Attention, please remove the two == at the end of the grafana_api_key - Attention, please remove the two == at the end of the grafana_api_key
- because ansible lookup plugins options are splited on = (see example). - because ansible lookup plugins options are split on = (see example).
env: env:
- name: GRAFANA_API_KEY - name: GRAFANA_API_KEY
grafana_user: grafana_user:

Loading…
Cancel
Save