AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Compliance Governance Audit

skill-ricmmartins-azure-sre-agent-skills-02-compliance-governance · by ricmmartins

Audit Azure environment for compliance and governance posture. Checks Azure Policy, RBAC, tagging, resource locks, naming conventions, and regulatory alignment. Use when asked about compliance, governance, audit readiness, or policy violations.

No reviews yet
0 installs
21 views
0.0% view→install

Install

$ agentstack add skill-ricmmartins-azure-sre-agent-skills-02-compliance-governance

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ricmmartins-azure-sre-agent-skills-02-compliance-governance)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
17d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Compliance Governance Audit? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Compliance & Governance Audit

Purpose

Assess the governance posture of Azure subscriptions by auditing policies, RBAC assignments, tagging standards, resource locks, and regulatory alignment. Produce a compliance scorecard with remediation steps.

CRITICAL formatting rule

Use Unicode emoji characters directly (🟢 🟡 🔴) in ALL output — headers, tables, findings, bullet points, everywhere. NEVER use emoji shortcodes like :red_circle:, :yellow_circle:, :green_circle:, or any :name: syntax. This applies to every section of the report without exception.

When to use this skill

  • User asks "are we compliant?"
  • User asks about governance, policy violations, or audit readiness
  • Pre-audit preparation (SOC2, ISO 27001, HIPAA, etc.)
  • Monthly governance review

Pre-check

Confirm with the user:

  • Scope: which subscriptions/management groups
  • Compliance framework (if any): SOC2, ISO 27001, HIPAA, PCI-DSS, CIS Benchmarks, or general best practices
  • Any known exceptions or waivers

Audit procedure

Step 1: Azure Policy compliance

Check overall policy compliance state.

az policy state summarize --query "value[].{policy:policyDefinitionName, nonCompliant:nonCompliantResources}" -o table
  1. List all non-compliant resources grouped by policy
  2. Identify policies in "audit" mode that should be "deny"
  3. Check for orphaned policy assignments (assigned but no effect)
  4. Verify initiative assignments for regulatory frameworks (CIS, NIST, etc.)

Report:

  • Total policies assigned
  • % compliant
  • Top 5 violated policies with resource count

Step 2: RBAC review

Audit role assignments for least-privilege violations.

az role assignment list --all --query "[].{principal:principalName, role:roleDefinitionName, scope:scope}" -o table
  1. Owner count: Flag if > 3 Owners at subscription level
  2. Contributor sprawl: List all Contributor assignments — flag service principals with Contributor when a custom role would suffice
  3. Classic admins: Check for legacy co-administrators

``bash az role assignment list --include-classic-administrators -o table ``

  1. Guest users with privileged roles: Flag external identities with Owner/Contributor
  2. Stale assignments: Cross-reference with sign-in logs — flag principals that haven't signed in for 90+ days
  3. Custom roles: Review custom role definitions for overly broad permissions (e.g., * actions)

Step 3: Tagging compliance

Check mandatory tags across all resources.

Define expected mandatory tags (confirm with user or use defaults):

  • environment (prod/staging/dev/test)
  • owner (team or individual)
  • cost-center (billing code)
  • application (workload name)
az resource list --query "[?tags.environment==null || tags.owner==null].{name:name, type:type, rg:resourceGroup, tags:tags}" -o table

Report:

  • % of resources with all mandatory tags
  • Top offending resource groups
  • Resources with no tags at all

Step 4: Resource locks

Check critical resources for delete/read-only locks.

az lock list --query "[].{name:name, level:level, resource:resourceId}" -o table
  1. Verify production databases have delete locks
  2. Verify production storage accounts have delete locks
  3. Verify networking resources (VNets, ExpressRoute) have locks
  4. Flag production resources without any lock

Step 5: Naming conventions

Analyze resource naming patterns.

  1. Extract all resource names and types
  2. Check against Azure naming conventions (e.g., rg-, vnet-, vm-, st, kv-)
  3. Flag resources that don't follow a consistent pattern
  4. Report % compliance with naming standards

Step 6: Network governance

  1. Check for resources with public endpoints that should be private
  2. Verify NSG flow logs are enabled
  3. Check for Network Watcher in all active regions
  4. Verify DDoS protection on VNets with public-facing resources

Step 7: Diagnostic settings

  1. Check that all critical resources have diagnostic settings enabled
  2. Verify logs flow to a central Log Analytics workspace
  3. Check Activity Log export at subscription level
az monitor diagnostic-settings subscription list --subscription  -o table

Scoring model

| Rating | Meaning | |--------|---------| | 🟢 Compliant | Meets standard, no action needed | | 🟡 Partial | Partially implemented, needs improvement | | 🔴 Non-compliant | Missing or misconfigured, action required |

Reminder: use the actual Unicode characters 🟢 🟡 🔴 above, never shortcodes.

Expected output

Report header (mandatory — use this exact format)

Compliance & Governance Audit Report

| Field | Value | |-------|-------| | Subscription | (name + ID) | | Assessment Date | YYYY-MM-DD | | Overall Score | XX% |

Governance scorecard

| Area | Status | Compliant | Partial | Non-compliant | Score | |------|--------|-----------|---------|---------------|-------| | Azure Policy | 🟡 | X | Y | Z | % | | RBAC | 🔴 | ... | ... | ... | % | | Tagging | 🟡 | ... | ... | ... | % | | Resource Locks | 🔴 | ... | ... | ... | % | | Naming | 🟢 | ... | ... | ... | % | | Network Gov. | 🟡 | ... | ... | ... | % | | Diagnostics | 🟡 | ... | ... | ... | % | | Overall | | | | | % |

Critical findings (act now)

Items that represent immediate risk or audit failure.

Remediation plan

For each finding:

  • What's wrong
  • Why it matters
  • How to fix it (with az cli command or portal steps)
  • Use GetAzCliHelp to validate the command syntax before suggesting
  • Include the official Microsoft Learn documentation link
  • Estimated effort
  • Priority (Critical/High/Medium/Low)

References

  • Azure Policy: https://learn.microsoft.com/en-us/azure/governance/policy/overview
  • RBAC Best Practices: https://learn.microsoft.com/en-us/azure/role-based-access-control/best-practices
  • Resource Tagging: https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/tag-resources
  • Resource Locks: https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/lock-resources
  • Naming Conventions: https://learn.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/naming-and-tagging

Regulatory mapping (if framework specified)

Map findings to specific controls (e.g., SOC2 CC6.1, ISO 27001 A.9.2.3).

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.