From 94e3f306910c60d3b74220ba5569e84198f0dabc Mon Sep 17 00:00:00 2001 From: Josh Carlson Date: Mon, 10 Jun 2024 11:55:33 -0400 Subject: [PATCH] Disable GCS scanning to improve speed and prevent timeouts We use GCP a small amount, but not the cloud storage service, so we shouldn't see any of these come about --- lambda_code/scan/scan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lambda_code/scan/scan.py b/lambda_code/scan/scan.py index 3fcc766..291cb2d 100644 --- a/lambda_code/scan/scan.py +++ b/lambda_code/scan/scan.py @@ -304,7 +304,7 @@ def lambda_handler(event, context): # pylint:disable=unused-argument # cname_azure(account_name, record_sets) cname_cloudfront_s3(account_name, record_sets, account_id) cname_eb(account_name, record_sets) - cname_google(account_name, record_sets) + # cname_google(account_name, record_sets) cname_s3(account_name, record_sets) ns_subdomain(account_name, hosted_zone, record_sets)