Fix indentation levels in os_keypair

This commit is contained in:
Toshio Kuratomi 2015-07-01 05:00:08 -07:00 committed by Matt Clay
commit cf595b3c52

View file

@ -32,30 +32,30 @@ short_description: Add/Delete a keypair from OpenStack
extends_documentation_fragment: openstack extends_documentation_fragment: openstack
version_added: "2.0" version_added: "2.0"
description: description:
- Add or Remove key pair from OpenStack - Add or Remove key pair from OpenStack
options: options:
name: name:
description: description:
- Name that has to be given to the key pair - Name that has to be given to the key pair
required: true required: true
default: None default: None
public_key: public_key:
description: description:
- The public key that would be uploaded to nova and injected into VMs - The public key that would be uploaded to nova and injected into VMs
upon creation. upon creation.
required: false
default: None
public_key_file:
description:
- Path to local file containing ssh public key. Mutually exclusive
with public_key.
required: false required: false
default: None default: None
state: public_key_file:
description: description:
- Should the resource be present or absent. - Path to local file containing ssh public key. Mutually exclusive
choices: [present, absent] with public_key.
default: present required: false
default: None
state:
description:
- Should the resource be present or absent.
choices: [present, absent]
default: present
requirements: [] requirements: []
''' '''