From 68e264e878ebd4342c67612e3e6199f19a73ba85 Mon Sep 17 00:00:00 2001 From: Denis GERMAIN Date: Mon, 17 Sep 2018 22:04:09 +0200 Subject: [PATCH] Wrong parameter in scaleway sshkey module example (#45737) * Update scaleway_sshkey.py fix: typo "present" in example --- lib/ansible/modules/cloud/scaleway/scaleway_sshkey.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/cloud/scaleway/scaleway_sshkey.py b/lib/ansible/modules/cloud/scaleway/scaleway_sshkey.py index a761420ea9f..0ed3ea13025 100644 --- a/lib/ansible/modules/cloud/scaleway/scaleway_sshkey.py +++ b/lib/ansible/modules/cloud/scaleway/scaleway_sshkey.py @@ -51,7 +51,7 @@ EXAMPLES = ''' - name: "Add SSH key" scaleway_sshkey: ssh_pub_key: "ssh-rsa AAAA..." - state: "Present" + state: "present" - name: "Delete SSH key" scaleway_sshkey: @@ -61,7 +61,7 @@ EXAMPLES = ''' - name: "Add SSH key with explicit token" scaleway_sshkey: ssh_pub_key: "ssh-rsa AAAA..." - state: "Present" + state: "present" oauth_token: "6ecd2c9b-6f4f-44d4-a187-61a92078d08c" '''