Skip to content

Commit 0d2061b

Browse files
authored
Add explicit YAML, JSON tags to config struct (#147)
1 parent 5bf1f12 commit 0d2061b

File tree

3 files changed

+61
-12
lines changed

3 files changed

+61
-12
lines changed

beater/cloudbeat.go

+3-9
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ import (
3434
csppolicies "github.com/elastic/csp-security-policies/bundle"
3535

3636
"github.com/gofrs/uuid"
37-
"gopkg.in/yaml.v3"
3837
)
3938

4039
// cloudbeat configuration.
@@ -170,23 +169,18 @@ func (bt *cloudbeat) Run(b *beat.Beat) error {
170169
break
171170
}
172171

173-
// TODO(yashtewari): Figure out the scenarios in which the integration sends
174-
// multiple input streams. Since only one instance of our integration is allowed per
175-
// agent policy, is it even possible that multiple input streams are received?
176-
y, err := yaml.Marshal(bt.config.Streams[0].DataYaml)
172+
y, err := bt.config.DataYaml()
177173
if err != nil {
178174
logp.L().Errorf("Could not marshal to YAML: %v", err)
179175
break
180176
}
181177

182-
s := string(y)
183-
184-
if err := csppolicies.HostBundleWithDataYaml("bundle.tar.gz", policies, s); err != nil {
178+
if err := csppolicies.HostBundleWithDataYaml("bundle.tar.gz", policies, y); err != nil {
185179
logp.L().Errorf("Could not update bundle with dataYaml: %v", err)
186180
break
187181
}
188182

189-
logp.L().Infof("Bundle updated with dataYaml: %s", s)
183+
logp.L().Infof("Bundle updated with dataYaml: %s", y)
190184

191185
case fetchedResources := <-output:
192186
cycleId, _ := uuid.NewV4()

config/config.go

+16-3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import (
2525

2626
"github.com/elastic/beats/v7/libbeat/common"
2727
"github.com/elastic/beats/v7/libbeat/processors"
28+
"gopkg.in/yaml.v3"
2829
)
2930

3031
const DefaultNamespace = "default"
@@ -43,9 +44,9 @@ type Config struct {
4344
type Stream struct {
4445
DataYaml struct {
4546
ActivatedRules struct {
46-
CISK8S []string `config:"cis_k8s"`
47-
} `config:"activated_rules"`
48-
} `config:"data_yaml"`
47+
CISK8S []string `config:"cis_k8s" yaml:"cis_k8s" json:"cis_k8s"`
48+
} `config:"activated_rules" yaml:"activated_rules" json:"activated_rules"`
49+
} `config:"data_yaml" yaml:"data_yaml" json:"data_yaml"`
4950
}
5051

5152
var DefaultConfig = Config{
@@ -70,6 +71,18 @@ func (c *Config) Update(cfg *common.Config) error {
7071
return nil
7172
}
7273

74+
func (c *Config) DataYaml() (string, error) {
75+
// TODO(yashtewari): Figure out the scenarios in which the integration sends
76+
// multiple input streams. Since only one instance of our integration is allowed per
77+
// agent policy, is it even possible that multiple input streams are received?
78+
y, err := yaml.Marshal(c.Streams[0].DataYaml)
79+
if err != nil {
80+
return "", err
81+
}
82+
83+
return string(y), nil
84+
}
85+
7386
// Datastream function to generate the datastream value
7487
func Datastream(namespace string, indexPrefix string) string {
7588
if namespace == "" {

config/config_test.go

+42
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
package config
2222

2323
import (
24+
"strings"
2425
"testing"
2526

2627
"github.com/elastic/beats/v7/libbeat/common"
@@ -68,3 +69,44 @@ func (s *ConfigTestSuite) TestNew() {
6869
s.Equal(test.expectedPatterns, c.Streams[0].DataYaml.ActivatedRules.CISK8S)
6970
}
7071
}
72+
73+
func (s *ConfigTestSuite) TestDataYaml() {
74+
var tests = []struct {
75+
config string
76+
expectedYaml string
77+
}{
78+
{
79+
`
80+
streams:
81+
- data_yaml:
82+
activated_rules:
83+
cis_k8s:
84+
- a
85+
- b
86+
- c
87+
- d
88+
`,
89+
`
90+
activated_rules:
91+
cis_k8s:
92+
- a
93+
- b
94+
- c
95+
- d
96+
`,
97+
},
98+
}
99+
100+
for _, test := range tests {
101+
cfg, err := common.NewConfigFrom(test.config)
102+
s.NoError(err)
103+
104+
c, err := New(cfg)
105+
s.NoError(err)
106+
107+
dy, err := c.DataYaml()
108+
s.NoError(err)
109+
110+
s.Equal(strings.TrimSpace(test.expectedYaml), strings.TrimSpace(dy))
111+
}
112+
}

0 commit comments

Comments
 (0)