-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathconfig.go
More file actions
35 lines (30 loc) · 960 Bytes
/
config.go
File metadata and controls
35 lines (30 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright Mondoo, Inc. 2024, 2026
// SPDX-License-Identifier: BUSL-1.1
package config
import (
"go.mondoo.com/mql/v13/providers-sdk/v1/plugin"
"go.mondoo.com/mql/v13/providers/mondoo/provider"
)
var Config = plugin.Provider{
Name: "mondoo",
ID: "go.mondoo.com/mql/v13/providers/mondoo",
Version: "13.0.4",
ConnectionTypes: []string{provider.DefaultConnectionType},
Connectors: []plugin.Connector{
{
Name: "mondoo",
Use: "mondoo",
Short: "Mondoo Platform",
Long: `Use the mondoo provider to query resources in Mondoo Platform.
To query Mondoo Platform from a workstation, the workstation must be registered with Mondoo Platform. To learn how to register a workstation, read https://mondoo.com/docs/cnspec/cnspec-adv-install/registration/.
Examples:
cnspec shell mondoo
cnspec scan mondoo
`,
MinArgs: 0,
MaxArgs: 4,
Discovery: []string{},
Flags: []plugin.Flag{},
},
},
}