🛡️
Audit Radar Scanner🔄
75%HEALTH
Commit Graph
Click to blame
a1b2c3d4release/v1.1
Dev DevOpsNON-COMPLIANT
f8b9c0d1main
Alice AuditorCOMPLIANT
e4f5a6b7feature/logging
Bob BuilderPARTIAL
cd78ef90patch/rotation
Charlie CoderNON-COMPLIANT
Global Health TrendTime-Series

Compliance Index

NON-COMPLIANT
75%

Guidelines Evaluated

ACTIVE
142
Across 12 Frameworks

Historical Trend

TIMELINE
Total runs logs6 simulated
Live Compliance Drift InspectorComparative Diff Panel
Regulatory Directive Bulletin
Internal Telemetry & Gaps
Ref: sebi_logs_policy_test: Section 2NON-COMPLIANT

AWS infrastructure telemetry registers database log storage has no active application-level cryptographic signing configuration active.

HASH: a1b2c3d4AUTHOR: Dev DevOpsBRANCH: release/v1.1
Ref: sebi_logs_policy_test: Section 3NON-COMPLIANT

AWS RDS database cluster configuration registers storage_encrypted=false and kms_key_id=null. No customer-managed key is utilized.

HASH: a1b2c3d4AUTHOR: Dev DevOpsBRANCH: release/v1.1

💻Remediation console

# Dynamic Remediation Plan (Terraform IaC) generated by ReguDrift AI
# Gap 1: Clause 4.2(b): KMS CMK log storage
# Severity: CRITICAL | Clarity: 95/100
# Git Commit Context: Hash=a1b2c3d4e5f67890 | Author=Dev DevOps | Branch=release/v1.1
resource "aws_kms_key" "telemetry_encryption" {
description = "KMS key for financial telemetry DB"
enable_key_rotation = true
}
resource "aws_rds_cluster" "financial_telemetry" {
cluster_identifier = "aurora-telemetry-cluster"
storage_encrypted = true
kms_key_id = aws_kms_key.telemetry_encryption.arn
}