Fix documentation builds.
This commit is contained in:
parent
fee3cadcb5
commit
60ce2d3853
3 changed files with 7 additions and 8 deletions
|
@ -15,12 +15,12 @@
|
||||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
---
|
|
||||||
module: rax_cdb_database
|
module: rax_cdb_database
|
||||||
short_description: create / delete a database in the Cloud Databases
|
short_description: 'create / delete a database in the Cloud Databases'
|
||||||
description:
|
description:
|
||||||
- create / delete a database in the Cloud Databases.
|
- create / delete a database in the Cloud Databases.
|
||||||
version_added: "1.88888888ns:
|
version_added: "1.8"
|
||||||
|
options:
|
||||||
api_key:
|
api_key:
|
||||||
description:
|
description:
|
||||||
- Rackspace API key (overrides I(credentials))
|
- Rackspace API key (overrides I(credentials))
|
||||||
|
@ -61,7 +61,8 @@ version_added: "1.88888888ns:
|
||||||
- Indicate desired state of the resource
|
- Indicate desired state of the resource
|
||||||
choices: ['present', 'absent']
|
choices: ['present', 'absent']
|
||||||
default: present
|
default: present
|
||||||
requirements: [ "pyrax" ]
|
requirements:
|
||||||
|
- "pyrax"
|
||||||
author: Simon JAILLET
|
author: Simon JAILLET
|
||||||
notes:
|
notes:
|
||||||
- The following environment variables can be used, C(RAX_USERNAME),
|
- The following environment variables can be used, C(RAX_USERNAME),
|
||||||
|
|
|
@ -39,8 +39,7 @@ options:
|
||||||
default: null
|
default: null
|
||||||
copy:
|
copy:
|
||||||
description:
|
description:
|
||||||
- If set to yes/true (default), the file is copied from the 'master' to the target machine,
|
- "if true, the file is copied from the 'master' to the target machine, otherwise, the plugin will look for src archive at the target machine."
|
||||||
if set to no/false, the plugin will look for src archive at the target machine.
|
|
||||||
required: false
|
required: false
|
||||||
choices: [ "yes", "no" ]
|
choices: [ "yes", "no" ]
|
||||||
default: "yes"
|
default: "yes"
|
||||||
|
|
|
@ -44,8 +44,7 @@ options:
|
||||||
required: False
|
required: False
|
||||||
default: None
|
default: None
|
||||||
description:
|
description:
|
||||||
- character used to override the split the database values into lists/arrays,
|
- "character used to split the database values into lists/arrays such as ':' or '\t', otherwise it will try to pick one depending on the database"
|
||||||
i.e ':' or '\t'. Otherwise split tries to be 'smart' depending on DB.
|
|
||||||
fail_key:
|
fail_key:
|
||||||
required: False
|
required: False
|
||||||
default: True
|
default: True
|
||||||
|
|
Loading…
Reference in a new issue