From dc74934352da0044caeed2206911fd2a7ec84941 Mon Sep 17 00:00:00 2001 From: Antony Bishop <36888942+AntonyBishop@users.noreply.github.com> Date: Tue, 11 Jun 2024 15:23:42 +0100 Subject: [PATCH] Add new collaborator --- terraform/airflow-cjs-dashboard-data.tf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 terraform/airflow-cjs-dashboard-data.tf diff --git a/terraform/airflow-cjs-dashboard-data.tf b/terraform/airflow-cjs-dashboard-data.tf new file mode 100644 index 0000000..7d95120 --- /dev/null +++ b/terraform/airflow-cjs-dashboard-data.tf @@ -0,0 +1,16 @@ +module "airflow-cjs-dashboard-data" { + source = "./modules/repository-collaborators" + repository = "airflow-cjs-dashboard-data" + collaborators = [ + { + github_user = "HayleyBird-CPS" + permission = "pull" + name = "Hayley Bird" + email = "Hayley.Bird@cps.gov.uk" + org = "CPS" + reason = "To be able to view our data validation code so that they can validate their own data rather than rely on our team to do this." + added_by = "laura.knowles1@justice.gov.uk" + review_after = "2024-12-07" + }, + ] +}