From 64e1d6765eb411aef07f80e8cddd7b5ebf429604 Mon Sep 17 00:00:00 2001 From: Antony Bishop <36888942+AntonyBishop@users.noreply.github.com> Date: Tue, 5 Nov 2024 16:43:07 +0000 Subject: [PATCH] Add new collaborator --- terraform/pfl-parent-planner.tf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 terraform/pfl-parent-planner.tf diff --git a/terraform/pfl-parent-planner.tf b/terraform/pfl-parent-planner.tf new file mode 100644 index 000000000..bf1f6868c --- /dev/null +++ b/terraform/pfl-parent-planner.tf @@ -0,0 +1,16 @@ +module "pfl-parent-planner" { + source = "./modules/repository-collaborators" + repository = "pfl-parent-planner" + collaborators = [ + { + github_user = "StuBamforthDWP" + permission = "push" + name = "Stuart Bamforth" + email = "stu.bamforth@guest.vivace.tech" + org = "Wyser via the Ace platform" + reason = "Prototype creation for a new service" + added_by = "Chris.Anderson1@justice.gov.uk" + review_after = "2024-12-31" + }, + ] +}