--- # ============================================================================ # Sophos Common Role - Internal Variables # ============================================================================ # These variables are internal to the role and should not be overridden. # ============================================================================ # API endpoint paths (Sophos XGS XML API) sophos_api_base_path: "/webconsole/APIController" # XML API request wrapper template sophos_api_request_template: | {{ sophos_api_username }} {{ sophos_api_password }} {{ api_request_body }} # Supported firmware versions (for validation) sophos_supported_firmware_versions: - "19.0" - "19.5" - "20.0" # Default HTTP headers for API requests sophos_api_default_headers: Content-Type: "application/x-www-form-urlencoded" Accept: "application/xml"