@@ -21,18 +21,20 @@ import (
21
21
"context"
22
22
"fmt"
23
23
24
+ "github.com/elastic/cloudbeat/config"
24
25
"github.com/elastic/cloudbeat/evaluator"
26
+ _ "github.com/elastic/cloudbeat/processor" // Add cloudbeat default processors.
27
+ "github.com/elastic/cloudbeat/resources/manager"
28
+ "github.com/elastic/cloudbeat/transformer"
25
29
26
30
"github.com/elastic/beats/v7/libbeat/beat"
27
31
"github.com/elastic/beats/v7/libbeat/common"
28
32
"github.com/elastic/beats/v7/libbeat/logp"
29
33
"github.com/elastic/beats/v7/libbeat/processors"
30
- "github.com/elastic/cloudbeat/config"
31
- _ "github.com/elastic/cloudbeat/processor" // Add cloudbeat default processors.
32
- "github.com/elastic/cloudbeat/resources/manager"
33
- "github.com/elastic/cloudbeat/transformer"
34
+ csppolicies "github.com/elastic/csp-security-policies/bundle"
34
35
35
36
"github.com/gofrs/uuid"
37
+ "gopkg.in/yaml.v3"
36
38
)
37
39
38
40
// cloudbeat configuration.
@@ -153,9 +155,39 @@ func (bt *cloudbeat) Run(b *beat.Beat) error {
153
155
154
156
case update := <- bt .configUpdates :
155
157
if err := bt .config .Update (update ); err != nil {
156
- logp .L ().Errorf ("could not update cloudbeat config: %v" , err )
158
+ logp .L ().Errorf ("Could not update cloudbeat config: %v" , err )
159
+ break
160
+ }
161
+
162
+ policies , err := csppolicies .CISKubernetes ()
163
+ if err != nil {
164
+ logp .L ().Errorf ("Could not load CIS Kubernetes policies: %v" , err )
165
+ break
166
+ }
167
+
168
+ if len (bt .config .Streams ) == 0 {
169
+ logp .L ().Infof ("Did not receive any input stream, skipping." )
170
+ break
171
+ }
172
+
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 )
177
+ if err != nil {
178
+ logp .L ().Errorf ("Could not marshal to YAML: %v" , err )
179
+ break
157
180
}
158
181
182
+ s := string (y )
183
+
184
+ if err := csppolicies .HostBundleWithDataYaml ("bundle.tar.gz" , policies , s ); err != nil {
185
+ logp .L ().Errorf ("Could not update bundle with dataYaml: %v" , err )
186
+ break
187
+ }
188
+
189
+ logp .L ().Infof ("Bundle updated with dataYaml: %s" , s )
190
+
159
191
case fetchedResources := <- output :
160
192
cycleId , _ := uuid .NewV4 ()
161
193
bt .log .Debugf ("Cycle % has started" , cycleId )
0 commit comments