cron0 6 1 * *

IAM Access Review — 1st of Month 6 AM

At 06:00, on day 1 of the month

Monthly IAM access review on the 1st of each month. Enumerates all IAM users, roles, and policies, flags unused credentials (>90 days), over-permissive wildcard policies, and missing MFA for privileged accounts for security team review.

Monthly1 per month runs/day

Want to customize this schedule or validate your own cron expression?

Try it live →

Field Breakdown

FieldValueMeaning
minute00
hour66
day11
month*every month
weekday*every day of week
0
minute
6
hour
1
day
*
month
*
weekday

Common Use Cases

  • IAM access review monthly cron
  • AWS IAM credential audit 1st
  • SOC 2 access review automation
  • Over-permissive policy detection

Code Examples

Bash / crontab
# Run your script on schedule: 0 6 1 * *
0 6 1 * * /path/to/your/script.sh
Node.js (node-cron)
import cron from 'node-cron';

cron.schedule('0 6 1 * *', () => {
  console.log('Running scheduled task');
});
Python (APScheduler)
from apscheduler.schedulers.blocking import BlockingScheduler

scheduler = BlockingScheduler()

@scheduler.scheduled_job('cron', minute='0', hour='6', day='1')
def my_job():
    print('Running scheduled task')

scheduler.start()

GitHub Actions Workflow

Generate a ready-to-use .github/workflows/schedule.yml file. Customize the name and download directly.

GitHub Actions
# .github/workflows/schedule.yml
name: IAM Access Review — 1st of Month 6 AM

on:
  schedule:
    - cron: '0 6 1 * *'
  workflow_dispatch: # allow manual trigger

jobs:
  run:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - name: Run scheduled task
        run: |
          echo "Running on schedule: 0 6 1 * *"
          # Add your commands here

Save as .github/workflows/schedule.yml in your repository root

Cron Syntax Quick Reference

FieldAllowed ValuesSpecial Chars
minute0–59* , - /
hour0–23* , - /
day of month1–31* , - /
month1–12 or JAN–DEC* , - /
day of week0–7 or SUN–SAT* , - /

Special characters: *= any value  ,= list  -= range  / = step

Related Patterns — Monthly

Need to build your own cron expression from scratch?

Open the Cron Expression Builder →