Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos and copy/paste issue for state description #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions library/monasca_alarm_definition.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@
description:
required: false
description:
- The description associated with the alarm
- The description associated with the alarm definition
expression:
required: false
description:
- The alarm expression, required for create/update operations.
- The alarm definition expression, required for create/update operations.
keystone_password:
required: false
description:
- Keystone password to use for authentication, required unless a keystone_token is specified.
keystone_url:
required: false
description:
- Keystone url to authenticate against, required unless keystone_token isdefined.
- Keystone url to authenticate against, required unless keystone_token is defined.
Example http://192.168.10.5:5000/v3
keystone_token:
required: false
Expand All @@ -59,7 +59,7 @@
monasca_api_url:
required: false
description:
- If unset the service endpoing registered with keystone will be used.
- If unset the service endpoint registered with keystone will be used.
name:
required: true
description:
Expand All @@ -72,13 +72,14 @@
required: false
default: "LOW"
description:
- The severity set for the alarm must be LOW, MEDIUM, HIGH or CRITICAL
- The severity set for the alarm definition must be LOW, MEDIUM, HIGH or CRITICAL
state:
required: false
default: "present"
choices: [ present, absent ]
description:
- Whether the account should exist. When C(absent), removes the user account.
- Whether the alarm definition should exist. When C(absent), removes the alarm definition. The name
is used to determine the alarm definition to remove
undetermined_actions:
required: false
description:
Expand Down