From 02b6df3160e66f92ef0e0cea363bce9472ce94b5 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Wed, 1 Jul 2015 05:00:08 -0700 Subject: [PATCH] Fix indentation levels in os_keypair --- cloud/openstack/os_keypair.py | 42 +++++++++++++++++------------------ 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/cloud/openstack/os_keypair.py b/cloud/openstack/os_keypair.py index 73656883a76..f62cc51bf64 100644 --- a/cloud/openstack/os_keypair.py +++ b/cloud/openstack/os_keypair.py @@ -32,30 +32,30 @@ short_description: Add/Delete a keypair from OpenStack extends_documentation_fragment: openstack version_added: "2.0" description: - - Add or Remove key pair from OpenStack + - Add or Remove key pair from OpenStack options: - name: - description: - - Name that has to be given to the key pair - required: true - default: None - public_key: - description: - - The public key that would be uploaded to nova and injected into VMs - upon creation. - required: false - default: None - public_key_file: - description: - - Path to local file containing ssh public key. Mutually exclusive - with public_key. + name: + description: + - Name that has to be given to the key pair + required: true + default: None + public_key: + description: + - The public key that would be uploaded to nova and injected into VMs + 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 default: None - state: - description: - - Should the resource be present or absent. - choices: [present, absent] - default: present + state: + description: + - Should the resource be present or absent. + choices: [present, absent] + default: present requirements: [] '''