feat: add support for supplying policy data from agent config#84
Merged
Conversation
gusfcarvalho
approved these changes
May 14, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 7 out of 8 changed files in this pull request and generated 5 comments.
Files not reviewed (1)
- runner/proto/runner.pb.go: Language not supported
Comments suppressed due to low confidence (1)
cmd/agent.go:1517
- The error from converting
policy_datato a protobuf Struct is discarded here as well. Scheduled/single-plugin runs can silently drop invalid policy_data and continue with policies evaluating against missing dynamic data; return or surface the conversion error before calling Configure.
policyDataStruct, _ := mapToStruct(plugin.PolicyData)
_, err = runnerInstance.Configure(&proto.ConfigureRequest{
Config: plugin.Config,
PolicyData: policyDataStruct,
| if err := func() error { | ||
| defer cleanupRunner() | ||
|
|
||
| policyDataStruct, _ := mapToStruct(pluginConfig.PolicyData) |
| can be of any shape and is made available to OPA/Rego policies during evaluation. This allows you to provide runtime | ||
| configuration to policies without modifying the policy files themselves. | ||
|
|
||
| Usage: ```satisfied if input.value == data.allowed_value``` |
| policies: | ||
| - <policy> | ||
| - <policy> | ||
| policy_data: # Optional: Mapping for supported policies. Can be any data struct |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.