diff --git a/changelogs/fragments/v2-sensor-installers.yml b/changelogs/fragments/v2-sensor-installers.yml new file mode 100644 index 00000000..c83cab8e --- /dev/null +++ b/changelogs/fragments/v2-sensor-installers.yml @@ -0,0 +1,3 @@ +bugfixes: +- sensor_download_info - fix offset and use override for v2 endpoint (https://github.com/CrowdStrike/ansible_collection_falcon/pull/520) +- falcon_install - fix filter to take advantage of new architectures field (https://github.com/CrowdStrike/ansible_collection_falcon/pull/521) diff --git a/plugins/modules/sensor_download_info.py b/plugins/modules/sensor_download_info.py index b8dec951..7f210fe6 100644 --- a/plugins/modules/sensor_download_info.py +++ b/plugins/modules/sensor_download_info.py @@ -151,7 +151,6 @@ DOWNLOAD_INFO_ARGS = { "filter": {"type": "str", "required": False}, "limit": {"type": "int", "required": False, "default": 100}, - "offset": {"type": "int", "required": False}, "sort": {"type": "str", "required": False}, } diff --git a/roles/falcon_install/vars/main.yml b/roles/falcon_install/vars/main.yml index 8330f2e1..52516003 100644 --- a/roles/falcon_install/vars/main.yml +++ b/roles/falcon_install/vars/main.yml @@ -24,6 +24,6 @@ falcon_cloud_urls: us-gov-1: "api.laggar.gcw.crowdstrike.com" falcon_os_arch_dict: - x86_64: "+os_version:!~'arm64'+os_version:!~'zLinux'" - aarch64: "+os_version:~'arm64'" - s390x: "+os_version:~'zLinux'" + x86_64: "+architectures:'x86_64'" + aarch64: "+architectures:'arm64'" + s390x: "+architectures:'s390x'"