CoSec
基于 RBAC 和策略的多租户响应式安全框架。
更新内容(v1.10.0) ???? ???? ????
⭐ 更新内容
-
依赖:更新
io.opentelemetry:opentelemetry-bom
到 v1.22.0。 -
特性:新增
BoolConditionMatcher
,Bool 条件匹配器,支持无限级嵌套,以增强条件匹配器语义。
{
"name": "AllowDeveloperOrIpRange",
"effect": "allow",
"actions": [
{
"type": "all"
}
],
"condition": {
"type": "bool",
"bool": {
"and": [
{
"type": "authenticated"
}
],
"or": [
{
"type": "in",
"part": "context.principal.id",
"in": [
"developerId"
]
},
{
"type": "path",
"part": "request.remoteIp",
"path": {
"caseSensitive": false,
"separator": ".",
"decodeAndParseSegments": false
},
"pattern": "192.168.0.*"
}
]
}
}
}