crowdstrike.falcon.falconctl_info (4.3.2) — module

Get values associated with Falcon sensor.

| "added in version" 3.2.0 of crowdstrike.falcon"

Authors: Carlos Matos (@carlosmmatos), Gabriel Alford (@redhatrises)

Install collection

Install with ansible-galaxy collection install crowdstrike.falcon:==4.3.2


Add to requirements.yml

  collections:
    - name: crowdstrike.falcon
      version: 4.3.2

Description

Return value associated with the Falcon sensor options.

This module is similar to the GET option in falconctl cli.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Get all Falcon sensor options
  crowdstrike.falcon.falconctl_info:
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Get a subset of Falcon sensor options
  crowdstike.falcon.falconctl_info:
    name:
      - 'cid'
      - 'aid'
      - 'tags'

Inputs

    
name:
    choices:
    - cid
    - aid
    - apd
    - aph
    - app
    - trace
    - feature
    - metadata_query
    - message_log
    - billing
    - tags
    - version
    - rfm_state
    - rfm_reason
    - backend
    description:
    - A list of falconctl GET options to query.
    elements: str
    type: list

Outputs

falconctl_info:
  description:
  - The dictionary containing values of requested Falcon sensor options.
  - Option values consist of strings, or null for options not set.
  returned: success
  sample:
    cid: 53abc1234c584115a46efc25dd831a2b
    message_log: 'True'
    tags: null
  type: dict