From cceabcedd9e538f1f2ec795601fba7f1c115deb6 Mon Sep 17 00:00:00 2001 From: Pat Heard Date: Sun, 17 Nov 2024 09:12:56 -0500 Subject: [PATCH] chore: reduce account crawler frequency The account data source crawler only needs to run monthly as the data schema is fairly static. --- terragrunt/aws/glue/crawlers.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terragrunt/aws/glue/crawlers.tf b/terragrunt/aws/glue/crawlers.tf index 4c205f4..ada79ea 100644 --- a/terragrunt/aws/glue/crawlers.tf +++ b/terragrunt/aws/glue/crawlers.tf @@ -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