infra_ssids - FortiAP SSID Resource +++++++++++++++++++++++++++++++++++ .. versionadded:: 1.0.0 .. contents:: :local: :depth: 1 Synopsis -------- FortiAP SSID Resource. Use API "/resource-api/v2/infra/ssids". Requirements ------------ The below requirements are needed on the host that executes this module. - ansible>=2.17.0 Parameters ---------- .. raw:: html Examples ------------- .. code-block:: yaml - name: Infrastructure SSIDs hosts: fortisase gather_facts: false vars: primary_key: "example" tasks: - name: Create/Update Infrastructure SSIDs fortinet.fortisase.infra_ssids: state: present params: primary_key: "{{ primary_key }}" broadcast_ssid: "enable" security_mode: "wpa2-only-personal" pre_shared_key: "1234567890" wifi_ssid: "wifi_ssid_example" client_limit: 101 - name: Delete Infrastructure SSIDs fortinet.fortisase.infra_ssids: state: absent params: primary_key: "{{ primary_key }}" Return Values ------------- .. raw:: html Authors ------- - Xinwei Du (@dux-fortinet)