docs: fix boundary log proto docs (#21451)

Simple docs fix to correctly reflect how boundary actually works in
terms of allowing HTTP requests.
This commit is contained in:
Zach
2026-01-08 08:28:25 -07:00
committed by GitHub
parent 8ea9f587e8
commit 1081d42760
2 changed files with 6 additions and 4 deletions
+3 -2
View File
@@ -4538,8 +4538,9 @@ type BoundaryLog_HttpRequest struct {
Method string `protobuf:"bytes,1,opt,name=method,proto3" json:"method,omitempty"`
Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
// The rule that resulted in this HTTP request not being allowed.
// Only populated when allowed = false.
// The rule that resulted in this HTTP request being allowed. Only populated
// when allowed = true because boundary denies requests by default and
// requires rule(s) that allow requests.
MatchedRule string `protobuf:"bytes,3,opt,name=matched_rule,json=matchedRule,proto3" json:"matched_rule,omitempty"`
}
+3 -2
View File
@@ -466,8 +466,9 @@ message BoundaryLog {
message HttpRequest {
string method = 1;
string url = 2;
// The rule that resulted in this HTTP request not being allowed.
// Only populated when allowed = false.
// The rule that resulted in this HTTP request being allowed. Only populated
// when allowed = true because boundary denies requests by default and
// requires rule(s) that allow requests.
string matched_rule = 3;
}