From df25a58c7a51ab0dce5735833e3eb6f19fea371e Mon Sep 17 00:00:00 2001 From: arnol377 Date: Wed, 25 Sep 2024 17:37:43 -0400 Subject: [PATCH] adding vpc-services --- main.tf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/main.tf b/main.tf index e725af3..20d73d9 100644 --- a/main.tf +++ b/main.tf @@ -291,3 +291,18 @@ module "ghe_runners" { enforce_prs = false collaborators = local.collaborators } + +module "vpc_services" { + source = "HappyPathway/repo/github" + github_repo_description = "Add VPC Endpoints for Supported Services to given Subnet" + repo_org = "arnol377" + name = "vpc-services" + github_repo_topics = [ + "terraform" + ] + force_name = true + github_is_private = false + create_codeowners = false + enforce_prs = false + collaborators = local.collaborators +}