security_url_threat_feeds - URL Threat Feed Resource ++++++++++++++++++++++++++++++++++++++++++++++++++++ .. versionadded:: 1.0.0 .. contents:: :local: :depth: 1 Synopsis -------- URL Threat Feed Resource. Use API "/resource-api/v2/security/url-threat-feeds". 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 URL Threat Feeds hosts: fortisase gather_facts: false vars: primary_key: "asbfeeds" tasks: - name: Create/Update Security URL Threat Feeds fortinet.fortisase.security_url_threat_feeds: state: present params: primary_key: "{{ primary_key }}" refresh_rate: 10 status: "enable" uri: "https://www.virustotal.com/api/v3/domains/example.com/threat-feed" basic_authentication: "enable" username: "fortinet" password: "fortinet" - name: Delete Security URL Threat Feeds fortinet.fortisase.security_url_threat_feeds: state: absent params: primary_key: "{{ primary_key }}" Return Values ------------- .. raw:: html Authors ------- - Xinwei Du (@dux-fortinet)