From e99fe117b1aac9c2a846ddf8978f76c0fde68498 Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Thu, 12 Sep 2024 12:05:40 -0500 Subject: [PATCH] chore: use service account --- infra/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/main.tf b/infra/main.tf index 469d7eb02..90c2ba9c5 100644 --- a/infra/main.tf +++ b/infra/main.tf @@ -14,7 +14,7 @@ module "fastly_production" { s3_logging_keys = var.fastly_s3_logging ngwaf_site_name = "prod" - ngwaf_email = "jacob.coffee@pyfound.org" # TODO + ngwaf_email = "infrastructure-staff@python.org" ngwaf_token = var.ngwaf_token activate_ngwaf_service = false } @@ -36,7 +36,7 @@ module "fastly_staging" { s3_logging_keys = var.fastly_s3_logging ngwaf_site_name = "test" - ngwaf_email = "jacob.coffee@pyfound.org" # TODO + ngwaf_email = "infrastructure-staff@python.org" ngwaf_token = var.ngwaf_token activate_ngwaf_service = true }