package
module
Version:
v0.0.0-...-1df7b67
Opens a new window with list of versions in this module.
Published: Sep 6, 2023
License: Apache-2.0
Opens a new window with license information.
Imports: 4
Opens a new window with list of imports.
Imported by: 8
Opens a new window with list of known importers.
Documentation
¶
type JFrogAppsConfig struct {
Version string `yaml:"version,omitempty"`
Modules []Module `yaml:"modules,omitempty"`
}
type Module struct {
Name string `yaml:"name,omitempty"`
SourceRoot string `yaml:"source_root,omitempty"`
ExcludePatterns []string `yaml:"exclude_patterns,omitempty"`
ExcludeScanners []string `yaml:"exclude_scanners,omitempty"`
Scanners Scanners `yaml:"scanners,omitempty"`
}
type SastScanner struct {
Scanner `yaml:",inline"`
Language string `yaml:"language,omitempty"`
ExcludedRules []string `yaml:"excluded_rules,omitempty"`
}
type Scanner struct {
WorkingDirs []string `yaml:"working_dirs,omitempty"`
ExcludePatterns []string `yaml:"exclude_patterns,omitempty"`
}
type Scanners struct {
Secrets *Scanner `yaml:"secrets,omitempty"`
Iac *Scanner `yaml:"iac,omitempty"`
Sast *SastScanner `yaml:"sast,omitempty"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.