security_internal_reverse_policies - Internal Reverse Policy Resource +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. versionadded:: 1.0.0 .. contents:: :local: :depth: 1 Synopsis -------- Internal Reverse Policy Resource. Use API "/resource-api/v2/security/internal-reverse-policies". 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 internal reverse policies hosts: fortisase gather_facts: false vars: primary_key: "reverse_policy_ansible" tasks: - name: Create/Update security internal reverse policies fortinet.fortisase.security_internal_reverse_policies: state: present params: primary_key: "{{ primary_key }}" enabled: true scope: "vpn-user" services: - primary_key: "SSH" datasource: "security/services" - primary_key: "RDP" datasource: "security/services" action: "deny" log_traffic: "all" profile_group: group: primary_key: "internal" datasource: "security/profile-groups" force_cert_inspection: false sources: - primary_key: "gui_test" datasource: "network/hosts" schedule: primary_key: "always" datasource: "security/recurring-schedules" comments: "Allow IT Admins remote access to machines of mobile workers" - name: Delete security internal reverse policies fortinet.fortisase.security_internal_reverse_policies: state: absent params: primary_key: "{{ primary_key }}" Return Values ------------- .. raw:: html Authors ------- - Xinwei Du (@dux-fortinet)