diff --git a/main.tf b/main.tf index b865579..e651048 100644 --- a/main.tf +++ b/main.tf @@ -47,7 +47,25 @@ module "automation-repos" { collaborators = local.collaborators pull_request_bypassers = local.pull_request_bypassers } - + +# centralized-actions +module "centralized-actions" { + source = "HappyPathway/repo/github" + #github_codeowners_team = "CSVD" + github_repo_description = "Automation Repos for Morpheus POC" + repo_org = "CSVD" + name = "centralized-actions" + github_repo_topics = [ + "terraform" + ] + force_name = true + create_codeowners = false + enforce_prs = true + collaborators = local.collaborators + pull_request_bypassers = local.pull_request_bypassers + github_is_private = false +} + # terraform-github-repo module "terraform-github-repo" { source = "git@github.e.it.census.gov:CSVD/terraform-github-repo"