This module allows you to manage GitHub teams for chapters. Chapters belong to a particular tribe therefore you will need to create a tribe first as well.
-
Create or find a GitHub Access Token and configure the GitHub provider.
provider "github" { token = var.github_token owner = "my-org-name" }
-
Configure the module, for example:
module "infrastructure_tribe_team" { source = "straw-hat-team/spotify/github//modules/tribe" version = "0.0.1" tribe_name = "infrastructure" } module "infrastructure_k8s_chapter_team" { source = "straw-hat-team/spotify/github//modules/chapter" version = "0.0.1" chapter_name = "k8s" squad_tribe = module.infrastructure_tribe_team.tribe_team[0] }