Welcome to FlowZap, the App to diagram with Speed, Clarity and Control.

Access Review Workflow

devops

Quarterly user access review workflow with manager certification, separation of duties validation, remediation tracking, and compliance reporting for audit purposes.

Full FlowZap Code

IAM { # Identity Management
n1: circle label:"Start"
n2: rectangle label:"Initiate quarterly review"
n3: rectangle label:"Generate access report"
n4: rectangle label:"Complete review cycle"
n5: circle label:"End"
n1.handle(right) -> n2.handle(left)
n2.handle(right) -> n3.handle(left)
n3.handle(bottom) -> Manager.n6.handle(top) [label="Review needed"]
n4.handle(right) -> n5.handle(left)
}
Manager { # Manager Review
n6: rectangle label:"Review direct reports access"
n7: diamond label:"Access appropriate?"
n8: rectangle label:"Certify access"
n9: rectangle label:"Flag for removal"
n10: rectangle label:"Request justification"
n11: diamond label:"More users to review?"
n6.handle(right) -> n7.handle(left)
n7.handle(right) -> n8.handle(left) [label="Yes"]
n7.handle(bottom) -> n9.handle(top) [label="No"]
n7.handle(left) -> n10.handle(top) [label="Unsure"]
n8.handle(right) -> n11.handle(left)
n9.handle(right) -> n11.handle(top)
n10.handle(right) -> n7.handle(top)
n11.handle(right) -> n6.handle(bottom) [label="Yes"]
n11.handle(bottom) -> Remediation.n12.handle(top) [label="No"]
}
Remediation { # Access Remediation
n12: rectangle label:"Collect flagged accounts"
n13: rectangle label:"Disable excess permissions"
n14: rectangle label:"Remove orphaned accounts"
n15: diamond label:"Exceptions requested?"
n16: rectangle label:"Route to security team"
n17: rectangle label:"Generate compliance report"
n18: rectangle label:"Archive review evidence"
n12.handle(right) -> n13.handle(left)
n13.handle(right) -> n14.handle(left)
n14.handle(right) -> n15.handle(left)
n15.handle(right) -> n16.handle(left) [label="Yes"]
n15.handle(bottom) -> n17.handle(top) [label="No"]
n16.handle(right) -> n17.handle(top)
n17.handle(right) -> n18.handle(left)
n18.handle(top) -> IAM.n4.handle(bottom) [label="Complete"]
}

Quick Answer

Access Review Workflow is a workflow template that quarterly access reviews are a compliance requirement for soc 2, iso 27001, and most security frameworks.

Why This Workflow?

Quarterly access reviews are a compliance requirement for SOC 2, ISO 27001, and most security frameworks. Without a structured workflow, organizations risk audit failures, orphaned accounts, and separation of duties violations. This workflow automates the certification process, ensuring managers review and approve user access before deadlines.

How It Works

  1. Step 1: The workflow begins with a scheduled trigger that pulls the current user access list from your identity provider (Okta, Azure AD, etc.).
  2. Step 2: Each manager receives a certification request for their direct reports, with a clear deadline and escalation path.
  3. Step 3: The system automatically flags separation of duties (SoD) violations—for example, a user with both "approve payments" and "create vendors" permissions.
  4. Step 4: Managers certify, revoke, or escalate each access right. Revocations are automatically synced back to the identity provider.
  5. Step 5: A compliance report is generated for auditors, showing certification rates, remediation timelines, and any exceptions.

Alternatives

Manual access reviews using spreadsheets typically take 2-4 weeks and have a 15-30% error rate. Dedicated GRC tools like SailPoint or Saviynt cost $50K+/year. This FlowZap workflow provides a visual, auditable process that integrates with your existing identity stack at a fraction of the cost.

Key Facts

Template NameAccess Review Workflow
Categorydevops
Steps5 workflow steps
FormatFlowZap Code (.fz file)

Related templates

Vulnerability Patch Workflow

devops

Security vulnerability patching workflow with CVE scanning, severity-based triage (critical/high/medium), patch testing, staging deployment, and production rollout with rollback capability.

Backup Restore Workflow

devops

Backup and restore workflow with scheduled backups, offsite replication, retention policy enforcement, restore testing, and RTO/RPO validation.

Certificate Renewal Workflow

devops

SSL/TLS certificate renewal workflow with expiration monitoring, certificate request by type (DV/OV/EV), domain validation, deployment to load balancers, and health check verification with rollback.

Chaos Engineering Workflow

devops

Chaos engineering workflow with hypothesis definition, steady-state monitoring, controlled fault injection, blast radius limitation, and resilience validation.

Ci Cd Pipeline Workflow

devops

Full CI/CD pipeline with code checkout, linting, unit tests, artifact building, staging deployment, smoke tests, production deployment, and automatic rollback on failure.

Database Migration Workflow

devops

Database schema migration workflow with CI testing, DBA review and approval, maintenance window scheduling, backup snapshots, migration execution, data integrity verification, and automatic rollback.

Back to all templates