diff --git a/terraform/modules/repo_access/main.tf b/terraform/modules/repo_access/main.tf index 2614521..4748e12 100644 --- a/terraform/modules/repo_access/main.tf +++ b/terraform/modules/repo_access/main.tf @@ -11,6 +11,12 @@ variable "access" { })) } +variable "owner" { + description = "The owner of the GitHub repository (organization or user)" + type = string + default = "birki-sandbox" +} + resource "github_team_repository" "repo_access" { for_each = { for team in var.access : team.team => team } repository = var.repo