security_ips_custom_signatures - IPS Custom Signature Resource ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. versionadded:: 1.0.0 .. contents:: :local: :depth: 1 Synopsis -------- IPS Custom Signature Resource. Use API "/resource-api/v2/security/ips-custom-signatures". 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 IPS Custom Signatures hosts: fortisase gather_facts: false vars: primary_key: "asbsignatures" tasks: - name: Create/Update Security IPS Custom Signatures fortinet.fortisase.security_ips_custom_signatures: state: present params: primary_key: "{{ primary_key }}" signature: "{{ lookup('file', 'signature.txt') }}" - name: Delete Security IPS Custom Signatures fortinet.fortisase.security_ips_custom_signatures: state: absent params: primary_key: "{{ primary_key }}" Return Values ------------- .. raw:: html Authors ------- - Xinwei Du (@dux-fortinet)