From 09f55d300bcf4aba1bf4b2855df3b35172d29cd4 Mon Sep 17 00:00:00 2001 From: Simon Dodsley Date: Wed, 25 Oct 2017 17:44:15 -0400 Subject: [PATCH] Fix issue #32138 - fix examples typo (#32140) --- lib/ansible/modules/storage/purestorage/purefa_snap.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ansible/modules/storage/purestorage/purefa_snap.py b/lib/ansible/modules/storage/purestorage/purefa_snap.py index 5d8ab3762f6..0b88d6a851b 100644 --- a/lib/ansible/modules/storage/purestorage/purefa_snap.py +++ b/lib/ansible/modules/storage/purestorage/purefa_snap.py @@ -56,7 +56,7 @@ EXAMPLES = r''' name: foo suffix: ansible fa_url: 10.10.10.2 - fa_api_token: e31060a7-21fc-e277-6240-25983c6c4592 + api_token: e31060a7-21fc-e277-6240-25983c6c4592 state: present - name: Create R/W clone foo_clone from snapshot foo.snap @@ -65,7 +65,7 @@ EXAMPLES = r''' suffix: snap target: foo_clone fa_url: 10.10.10.2 - fa_api_token: e31060a7-21fc-e277-6240-25983c6c4592 + api_token: e31060a7-21fc-e277-6240-25983c6c4592 state: copy - name: Overwrite existing volume foo_clone with snapshot foo.snap @@ -75,7 +75,7 @@ EXAMPLES = r''' target: foo_clone overwrite: true fa_url: 10.10.10.2 - fa_api_token: e31060a7-21fc-e277-6240-25983c6c4592 + api_token: e31060a7-21fc-e277-6240-25983c6c4592 state: copy - name: Delete and eradicate snapshot named foo.snap @@ -84,7 +84,7 @@ EXAMPLES = r''' suffix: snap eradicate: true fa_url: 10.10.10.2 - fa_api_token: e31060a7-21fc-e277-6240-25983c6c4592 + api_token: e31060a7-21fc-e277-6240-25983c6c4592 state: absent '''