File tree 3 files changed +61
-12
lines changed
3 files changed +61
-12
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ import (
34
34
csppolicies "github.com/elastic/csp-security-policies/bundle"
35
35
36
36
"github.com/gofrs/uuid"
37
- "gopkg.in/yaml.v3"
38
37
)
39
38
40
39
// cloudbeat configuration.
@@ -170,23 +169,18 @@ func (bt *cloudbeat) Run(b *beat.Beat) error {
170
169
break
171
170
}
172
171
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 ()
177
173
if err != nil {
178
174
logp .L ().Errorf ("Could not marshal to YAML: %v" , err )
179
175
break
180
176
}
181
177
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 {
185
179
logp .L ().Errorf ("Could not update bundle with dataYaml: %v" , err )
186
180
break
187
181
}
188
182
189
- logp .L ().Infof ("Bundle updated with dataYaml: %s" , s )
183
+ logp .L ().Infof ("Bundle updated with dataYaml: %s" , y )
190
184
191
185
case fetchedResources := <- output :
192
186
cycleId , _ := uuid .NewV4 ()
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ import (
25
25
26
26
"github.com/elastic/beats/v7/libbeat/common"
27
27
"github.com/elastic/beats/v7/libbeat/processors"
28
+ "gopkg.in/yaml.v3"
28
29
)
29
30
30
31
const DefaultNamespace = "default"
@@ -43,9 +44,9 @@ type Config struct {
43
44
type Stream struct {
44
45
DataYaml struct {
45
46
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" `
49
50
}
50
51
51
52
var DefaultConfig = Config {
@@ -70,6 +71,18 @@ func (c *Config) Update(cfg *common.Config) error {
70
71
return nil
71
72
}
72
73
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
+
73
86
// Datastream function to generate the datastream value
74
87
func Datastream (namespace string , indexPrefix string ) string {
75
88
if namespace == "" {
Original file line number Diff line number Diff line change 21
21
package config
22
22
23
23
import (
24
+ "strings"
24
25
"testing"
25
26
26
27
"github.com/elastic/beats/v7/libbeat/common"
@@ -68,3 +69,44 @@ func (s *ConfigTestSuite) TestNew() {
68
69
s .Equal (test .expectedPatterns , c .Streams [0 ].DataYaml .ActivatedRules .CISK8S )
69
70
}
70
71
}
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
+ }
You can’t perform that action at this time.
0 commit comments