Backport/2.5/36722 (#36733)

* Fix sanity checks in OpenStack docs fragment (#36722)

Signed-off-by: Mário Santos <mario.rf.santos@gmail.com>
(cherry picked from commit 8b52006d5c)
pull/36765/head
John R Barker 8 years ago committed by GitHub
parent 0aa62a54cd
commit d67d19bc1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -47,7 +47,6 @@ options:
password authentication, the name of the plugin should be indicated here password authentication, the name of the plugin should be indicated here
and the contents of the I(auth) parameter should be updated accordingly. and the contents of the I(auth) parameter should be updated accordingly.
required: false required: false
default: password
region_name: region_name:
description: description:
- Name of the region. - Name of the region.
@ -55,9 +54,9 @@ options:
wait: wait:
description: description:
- Should ansible wait until the requested resource is complete. - Should ansible wait until the requested resource is complete.
type: bool
required: false required: false
default: "yes" default: true
choices: ["yes", "no"]
timeout: timeout:
description: description:
- How long should ansible wait for the requested resource. - How long should ansible wait for the requested resource.
@ -68,29 +67,25 @@ options:
- How long should the socket layer wait before timing out for API calls. - How long should the socket layer wait before timing out for API calls.
If this is omitted, nothing will be passed to the requests library. If this is omitted, nothing will be passed to the requests library.
required: false required: false
default: None verify:
validate_certs:
description: description:
- Whether or not SSL API requests should be verified. Before 2.3 this defaulted to True. - Whether or not SSL API requests should be verified. Before 2.3 this defaulted to True.
type: bool
required: false required: false
default: null aliases: ['validate_certs']
aliases: ['verify']
cacert: cacert:
description: description:
- A path to a CA Cert bundle that can be used as part of verifying - A path to a CA Cert bundle that can be used as part of verifying
SSL API requests. SSL API requests.
required: false required: false
default: None
cert: cert:
description: description:
- A path to a client certificate to use as part of the SSL transaction. - A path to a client certificate to use as part of the SSL transaction.
required: false required: false
default: None
key: key:
description: description:
- A path to a client key to use as part of the SSL transaction. - A path to a client key to use as part of the SSL transaction.
required: false required: false
default: None
interface: interface:
description: description:
- Endpoint URL type to fetch from the service catalog. - Endpoint URL type to fetch from the service catalog.

Loading…
Cancel
Save