Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions src/azurefox/chains/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,46 @@ class ChainFamilySpec:
"reintroduce change."
),
),
ChainSourceSpec(
command="permissions",
minimum_fields=(
"principal_id",
"principal_type",
"high_impact_roles",
"scope_count",
"privileged",
),
rationale=(
"Provides direct RBAC proof for automation identities and service-connection-"
"backed principals."
),
),
ChainSourceSpec(
command="rbac",
minimum_fields=(
"scope_id",
"principal_id",
"role_name",
),
rationale=(
"Provides exact role-to-scope evidence for the current identity when the "
"family needs to prove start or edit control on an automation path."
),
),
ChainSourceSpec(
command="role-trusts",
minimum_fields=(
"source_object_id",
"target_object_id",
"trust_type",
"confidence",
"summary",
),
rationale=(
"Provides trust-expansion context when the deployment identity can also "
"control other app or service-principal boundaries."
),
),
ChainSourceSpec(
command="arm-deployments",
minimum_fields=(
Expand Down
Loading
Loading