mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
30 lines
1.3 KiB
Go
30 lines
1.3 KiB
Go
package config
|
|
|
|
import (
|
|
"github.com/spf13/viper"
|
|
|
|
"github.com/anchore/syft/internal/file"
|
|
"github.com/anchore/syft/syft/source"
|
|
)
|
|
|
|
type secrets struct {
|
|
Cataloger catalogerOptions `yaml:"cataloger" json:"cataloger" mapstructure:"cataloger"`
|
|
AdditionalPatterns map[string]string `yaml:"additional-patterns" json:"additional-patterns" mapstructure:"additional-patterns"`
|
|
ExcludePatternNames []string `yaml:"exclude-pattern-names" json:"exclude-pattern-names" mapstructure:"exclude-pattern-names"`
|
|
RevealValues bool `yaml:"reveal-values" json:"reveal-values" mapstructure:"reveal-values"`
|
|
SkipFilesAboveSize int64 `yaml:"skip-files-above-size" json:"skip-files-above-size" mapstructure:"skip-files-above-size"`
|
|
}
|
|
|
|
func (cfg secrets) loadDefaultValues(v *viper.Viper) {
|
|
v.SetDefault("secrets.cataloger.enabled", catalogerEnabledDefault)
|
|
v.SetDefault("secrets.cataloger.scope", source.AllLayersScope)
|
|
v.SetDefault("secrets.reveal-values", false)
|
|
v.SetDefault("secrets.skip-files-above-size", 1*file.MB)
|
|
v.SetDefault("secrets.additional-patterns", map[string]string{})
|
|
v.SetDefault("secrets.exclude-pattern-names", []string{})
|
|
}
|
|
|
|
func (cfg *secrets) parseConfigValues() error {
|
|
return cfg.Cataloger.parseConfigValues()
|
|
}
|