Skip to content

Commit

Permalink
Fix mesembria username and import team if needed (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
evankanderson authored Oct 29, 2024
1 parent 9127c7a commit e6332b3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion config/users.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ locals {
dashtangui = {}
dussab = {}
ethomson = {}
msembria = {}
mesembria = {}
staceypotter = {}
}
}
Expand Down Expand Up @@ -73,3 +73,9 @@ resource "github_team_members" "maintainers" {
}
}
}

// Import the team, because it didn't get stored in terraform state.
import {
to = github_team.maintainers
id = "maintainers"
}

0 comments on commit e6332b3

Please sign in to comment.