endpoint_sandbox_profiles - Sandbox Profile Resource ++++++++++++++++++++++++++++++++++++++++++++++++++++ .. versionadded:: 1.0.0 .. contents:: :local: :depth: 1 Synopsis -------- Sandbox Profile Resource. Use API "/resource-api/v2/endpoint/sandbox-profiles/{primaryKey}". 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: Update sandbox profile hosts: fortisase gather_facts: false vars: primary_key: "policy1" tasks: - name: Create a new endpoint profile, do nothing if the endpoint profile already exists fortinet.fortisase.endpoint_policies: state: present params: primary_key: "{{ primary_key }}" enabled: true - name: Update sandbox profile fortinet.fortisase.endpoint_sandbox_profiles: params: primary_key: "{{ primary_key }}" sandbox_mode: "FortiSASE" # Disabled, FortiSASE, StandaloneFortiSandbox detection_verdict_level: "Medium" exceptions: exclude_files_from_trusted_sources: "disable" files: [] folders: [] file_submission_options: all_email_downloads: "enable" all_files_mapped_network_drives: "enable" all_files_removable_media: "enable" all_web_downloads: "enable" remediation_actions: "quarantine" timeout_awaiting_sandbox_results: 0 Return Values ------------- .. raw:: html Authors ------- - Xinwei Du (@dux-fortinet)