From 3ac4611093f57745db4a6c73db61ee259bd6e070 Mon Sep 17 00:00:00 2001 From: Michael Gregson <gregson.michael@gmail.com> Date: Wed, 11 Dec 2013 12:03:53 -0700 Subject: [PATCH] Rename digital_ocean_ssh to digital_ocean_sshkey per https://github.com/ansible/ansible/pull/4315#issuecomment-30286556 --- library/cloud/{digital_ocean_ssh => digital_ocean_sshkey} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename library/cloud/{digital_ocean_ssh => digital_ocean_sshkey} (98%) diff --git a/library/cloud/digital_ocean_ssh b/library/cloud/digital_ocean_sshkey similarity index 98% rename from library/cloud/digital_ocean_ssh rename to library/cloud/digital_ocean_sshkey index f03fae14f80..19305c1e42e 100644 --- a/library/cloud/digital_ocean_ssh +++ b/library/cloud/digital_ocean_sshkey @@ -17,7 +17,7 @@ # along with Ansible. If not, see <http://www.gnu.org/licenses/>. DOCUMENTATION = ''' --- -module: digital_ocean_ssh +module: digital_ocean_sshkey short_description: Create/delete an SSH key in DigitalOcean description: - Create/delete an SSH key. @@ -54,7 +54,7 @@ EXAMPLES = ''' # If a key matches this name, will return the ssh key id and changed = False # If no existing key matches this name, a new key is created, the ssh key id is returned and changed = False -- digital_ocean_ssh: > +- digital_ocean_sshkey: > state=present name=my_ssh_key ssh_pub_key='ssh-rsa AAAA...'