Skip to content

Commit

Permalink
chore: reduce account crawler frequency (#29)
Browse files Browse the repository at this point in the history
The account data source crawler only needs to run monthly as
the data schema is fairly static.
  • Loading branch information
patheard authored Nov 18, 2024
1 parent 35e0f92 commit 04e86b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terragrunt/aws/glue/crawlers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ resource "aws_glue_crawler" "operations_aws_production_account_tags" {
Version = 1
})

schedule = "cron(00 13 * * ? *)" # Pickup new accounts each day
schedule = "cron(00 7 1 * ? *)" # Check for schema changes each month
}

# JSON classifier for arrays of objects
Expand Down

0 comments on commit 04e86b2

Please sign in to comment.