-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathconstants_check.go
39 lines (31 loc) · 1.21 KB
/
constants_check.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2016-present Datadog, Inc.
package checks
import (
"context"
"crypto/sha256"
"fmt"
"github.com/DataDog/datadog-agent/pkg/compliance"
"github.com/DataDog/datadog-agent/pkg/compliance/checks/env"
"github.com/DataDog/datadog-agent/pkg/compliance/eval"
"github.com/DataDog/datadog-agent/pkg/util/log"
)
func resolveConstants(_ context.Context, e env.Env, ruleID string, res compliance.ResourceCommon, rego bool) (resolved, error) {
if res.Constants == nil {
return nil, fmt.Errorf("expecting constants resource in constants check")
}
constants := res.Constants
idHash := sha256.New()
for name := range constants.Values {
idHash.Write([]byte(name))
}
resourceID := fmt.Sprintf("%x", idHash.Sum(nil))
log.Debugf("%s: running constants check", ruleID)
vars := eval.VarMap(constants.Values)
regoInput := eval.RegoInputMap(constants.Values)
instance := eval.NewInstance(vars, nil, regoInput)
resolvedInstance := newResolvedInstance(instance, resourceID, "constants")
return resolvedInstance, nil
}