mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
f36b7d4d6d
#17043 Set up dogfood to use gitops. I copied the current dogfood configs/policies/queries into the gitops flow. Successful workflow run: https://github.com/fleetdm/fleet/actions/runs/8023101797/job/21918883543?pr=17098 --------- Co-authored-by: Noah Talerman <noahtal@umich.edu>
12 lines
444 B
YAML
12 lines
444 B
YAML
- name: Collect Visual Studio (VS) Code extensions
|
|
automations_enabled: false
|
|
description: Collects the name, publisher, and version of the VS Code extensions
|
|
installed on hosts.
|
|
discard_data: false
|
|
interval: 3600
|
|
logging: snapshot
|
|
min_osquery_version: ""
|
|
observer_can_run: false
|
|
platform: ""
|
|
query: SELECT extension.name, extension.publisher, extension.version FROM users
|
|
JOIN vscode_extensions extension USING (uid); |