From 4967224248b075b56e598d5477b1e975916ddb0b Mon Sep 17 00:00:00 2001 From: Sean Hsu Date: Wed, 12 Feb 2020 04:14:50 +0800 Subject: [PATCH] Update digital_ocean_droplet.py (#66794) * Update digital_ocean_droplet.py here's new term of `ssh_keys` from `SSH key (numeric) ID` and in fact it's fingerprint. correctly term so people can easily know how to do it. * Update digital_ocean_droplet.py --- .../modules/cloud/digital_ocean/digital_ocean_droplet.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/digital_ocean/digital_ocean_droplet.py b/lib/ansible/modules/cloud/digital_ocean/digital_ocean_droplet.py index 01c583e3c17..29efcf44dca 100644 --- a/lib/ansible/modules/cloud/digital_ocean/digital_ocean_droplet.py +++ b/lib/ansible/modules/cloud/digital_ocean/digital_ocean_droplet.py @@ -53,7 +53,7 @@ options: aliases: ['region_id'] ssh_keys: description: - - array of SSH key (numeric) ID that you would like to be added to the server. + - array of SSH key Fingerprint that you would like to be added to the server. required: False private_networking: description: @@ -120,6 +120,7 @@ EXAMPLES = ''' region: sfo1 image: ubuntu-16-04-x64 wait_timeout: 500 + ssh_keys: [ .... ] register: my_droplet - debug: