mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
meraki_ssid - Add examples to documentation (#56425)
* Add standalone copy/paste-able examples
This commit is contained in:
committed by
Alicia Cozine
parent
2897cf43ce
commit
27aca731b3
@@ -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'''
|
||||
|
||||
Reference in New Issue
Block a user