meraki_ssid - Add examples to documentation (#56425) (#56579)

* Add standalone copy/paste-able examples

(cherry picked from commit 27aca731b3)
This commit is contained in:
Kevin Breit 2019-05-17 21:15:06 -05:00 committed by Alicia Cozine
parent 22511a4eee
commit d8fb3cc7f0
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,2 @@
minor_changes:
- meraki_ssid - Add examples to documentation.

View file

@ -216,6 +216,52 @@ extends_documentation_fragment: meraki
'''
EXAMPLES = r'''
- name: Enable and name SSID
meraki_ssid:
auth_key: abc123
state: present
org_name: YourOrg
net_name: WiFi
name: GuestSSID
enabled: true
delegate_to: localhost
- name: Set PSK with invalid encryption mode
meraki_ssid:
auth_key: abc123
state: present
org_name: YourOrg
net_name: WiFi
name: GuestSSID
auth_mode: psk
psk: abc1234
encryption_mode: eap
ignore_errors: yes
delegate_to: localhost
- name: Configure RADIUS servers
meraki_ssid:
auth_key: abc123
state: present
org_name: YourOrg
net_name: WiFi
name: GuestSSID
auth_mode: open-with-radius
radius_servers:
- host: 192.0.1.200
port: 1234
secret: abc98765
delegate_to: localhost
- name: Enable click-through splash page
meraki_ssid:
auth_key: abc123
state: present
org_name: YourOrg
net_name: WiFi
name: GuestSSID
splash_page: Click-through splash page
delegate_to: localhost
'''
RETURN = r'''