cloudstack: fix common E324 in docs (#37082) (#37119)

Notes about precedence of common args.

(partly cherry picked from commit 2559e832df)
pull/37125/head
René Moser 8 years ago committed by John R Barker
parent ee67c6c1e3
commit 0c4d8a9ce5

@ -11,24 +11,35 @@ options:
api_key: api_key:
description: description:
- API key of the CloudStack API. - API key of the CloudStack API.
- If not given, the C(CLOUDSTACK_KEY) env variable is considered.
- As the last option, the value is taken from the ini config file, also see the notes.
api_secret: api_secret:
description: description:
- Secret key of the CloudStack API. - Secret key of the CloudStack API.
- If not set, the C(CLOUDSTACK_SECRET) env variable is considered.
- As the last option, the value is taken from the ini config file, also see the notes.
api_url: api_url:
description: description:
- URL of the CloudStack API e.g. https://cloud.example.com/client/api. - URL of the CloudStack API e.g. https://cloud.example.com/client/api.
- If not given, the C(CLOUDSTACK_ENDPOINT) env variable is considered.
- As the last option, the value is taken from the ini config file, also see the notes.
api_http_method: api_http_method:
description: description:
- HTTP method used. - HTTP method used to query the API endpoint.
default: get - If not given, the C(CLOUDSTACK_METHOD) env variable is considered.
- As the last option, the value is taken from the ini config file, also see the notes.
- Fallback value is C(get) if not specified.
choices: [ get, post ] choices: [ get, post ]
api_timeout: api_timeout:
description: description:
- HTTP timeout. - HTTP timeout in seconds.
default: 10 - If not given, the C(CLOUDSTACK_TIMEOUT) env variable is considered.
- As the last option, the value is taken from the ini config file, also see the notes.
- Fallback value is 10 seconds if not specified.
api_region: api_region:
description: description:
- Name of the ini section in the C(cloustack.ini) file. - Name of the ini section in the C(cloustack.ini) file.
- If not given, the C(CLOUDSTACK_REGION) env variable is considered.
default: cloudstack default: cloudstack
requirements: requirements:
- "python >= 2.6" - "python >= 2.6"

Loading…
Cancel
Save