Skip to content

sensor_download

Downloads the Falcon Sensor Installer by SHA256 hash to the specified path. This module does not copy the sensor installer to the target host. For that,

Added in version 4.0.0

ParameterTypeRequiredDefaultDescription
destpathNoThe directory path to save the Falcon Sensor Installer. If not specified, a temporary directory will be created using
hashstrYesThe SHA256 hash of the Falcon Sensor Installer to download. This can be obtained from the C(sha256) return value of the
namestrNoThe name to save the Falcon Sensor Installer as. If not specified, it will default to the name of the Falcon Sensor Installer. “Example: falcon-sensor_6.78.9-12345.deb”
- name: Download the Falcon Sensor Installer
crowdstrike.falcon.sensor_download:
hash: "1234567890123456789012345678901234567890123456789012345678901234"
- name: Download Windows Sensor Installer with custom name
crowdstrike.falcon.sensor_download:
hash: "1234567890123456789012345678901234567890123456789012345678901234"
dest: "/tmp/windows"
name: falcon-sensor.exe
- name: Download the Falcon Sensor Installer to a temporary directory and set permissions
crowdstrike.falcon.sensor_download:
hash: "1234567890123456789012345678901234567890123456789012345678901234"
mode: "0644"
owner: "root"
group: "root"
KeyTypeDescription
pathT