security_services - Service Resource ++++++++++++++++++++++++++++++++++++ .. versionadded:: 1.0.0 .. contents:: :local: :depth: 1 Synopsis -------- Service Resource. Use API "/resource-api/v2/security/services". 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: Security service hosts: fortisase gather_facts: false vars: primary_key: "service_example" tasks: - name: Create/Update security service fortinet.fortisase.security_services: state: present params: primary_key: "{{ primary_key }}" proxy: false category: "Email" protocol: "TCP/UDP/SCTP" tcp_portrange: - destination: low: 25 - name: Delete security service fortinet.fortisase.security_services: state: absent params: primary_key: "{{ primary_key }}" Return Values ------------- .. raw:: html Authors ------- - Xinwei Du (@dux-fortinet)