Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #9 from traP-jp/h24s_17
Browse files Browse the repository at this point in the history
Add team hackathon_24_spring and h24s_17
  • Loading branch information
H1rono authored Jun 9, 2024
2 parents ce6c641 + b55052f commit af80e16
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
36 changes: 36 additions & 0 deletions hackathon/h24s.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
module "h24s_parent_team" {
source = "../modules/teams"

team_name = "hackathon_24_spring"
members = local.h24s_parent.members
maintainers = local.h24s_parent.maintainers
description = "2024春ハッカソン"
}

module "h24s_children_teams" {
for_each = local.h24s_children
source = "../modules/teams"

team_name = each.key
members = each.value.members
maintainers = each.value.maintainers
description = contains(keys(each.value), "description") ? each.value.description : ""

parent_id = module.h24s_parent_team.team_id
}

locals {
h24s_parent = {
members = [
"ErrorSyntax1", "Liscome", "H1rono", "itt828", "PL-38"
]
maintainers = ["Takeno-hito", "kaitoyama", "H1rono", "ikura-hamu"]
}

h24s_children = {
"h24s_17" = {
members = ["ErrorSyntax1", "Liscome", "PL-38"]
maintainers = ["itt828", "H1rono"]
}
}
}
2 changes: 2 additions & 0 deletions members.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ locals {
"kenken714", # kenken
"kisepichu", # tqk
"Kuryu025", # Kuryu
"Liscome", # Liscome
"Luftalian", # Luftalian
"mathsuky", # masky5859
"mehm8128", # mehm8128
Expand All @@ -54,6 +55,7 @@ locals {
"penguin23-001", # penguin23
"pikachu0310", # pikachu
"pirosiki197", # pirosiki
"PL-38", # PL-38
"Pugma", # Pugma
"ramdos0207", # ramdos
"ras0q", # Ras
Expand Down

0 comments on commit af80e16

Please sign in to comment.