2023-03-28 22:48:58 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2017-09-14 19:31:01 +00:00
|
|
|
package sentinel
|
|
|
|
|
|
|
|
// Evaluator wraps the Sentinel evaluator from the HashiCorp Sentinel policy
|
|
|
|
// engine.
|
|
|
|
type Evaluator interface {
|
|
|
|
Compile(policy string) error
|
|
|
|
Execute(policy string, enforcementLevel string, data map[string]interface{}) bool
|
2019-12-06 19:01:34 +00:00
|
|
|
Close()
|
2017-09-14 19:31:01 +00:00
|
|
|
}
|