This repository was archived by the owner on Apr 15, 2026. It is now read-only.
forked from integrations/terraform-provider-github
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathresource_github_enterprise_team.go
More file actions
281 lines (250 loc) · 8.47 KB
/
resource_github_enterprise_team.go
File metadata and controls
281 lines (250 loc) · 8.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
package github
import (
"context"
"errors"
"fmt"
"log"
"net/http"
"strconv"
"strings"
"github.com/google/go-github/v84/github"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/customdiff"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
)
func resourceGithubEnterpriseTeam() *schema.Resource {
return &schema.Resource{
Description: "Creates and manages a GitHub enterprise team.",
CreateContext: resourceGithubEnterpriseTeamCreate,
ReadContext: resourceGithubEnterpriseTeamRead,
UpdateContext: resourceGithubEnterpriseTeamUpdate,
DeleteContext: resourceGithubEnterpriseTeamDelete,
Importer: &schema.ResourceImporter{StateContext: resourceGithubEnterpriseTeamImport},
CustomizeDiff: customdiff.Sequence(
customdiff.ComputedIf("slug", func(_ context.Context, d *schema.ResourceDiff, meta any) bool {
return d.HasChange("name")
}),
),
Schema: map[string]*schema.Schema{
"enterprise_slug": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: "The slug of the enterprise (e.g. from the enterprise URL).",
ValidateDiagFunc: validation.ToDiagFunc(validation.StringLenBetween(1, 255)),
},
"name": {
Type: schema.TypeString,
Required: true,
Description: "The name of the enterprise team.",
ValidateDiagFunc: validation.ToDiagFunc(validation.StringLenBetween(1, 255)),
},
"description": {
Type: schema.TypeString,
Optional: true,
Description: "A description of the enterprise team.",
},
"organization_selection_type": {
Type: schema.TypeString,
Optional: true,
Default: "disabled",
Description: "Controls which organizations can see this team: `disabled`, `selected`, or `all`.",
ValidateDiagFunc: validation.ToDiagFunc(validation.StringInSlice([]string{"disabled", "selected", "all"}, false)),
},
"group_id": {
Type: schema.TypeString,
Optional: true,
Description: "The ID of the IdP group to assign team membership with.",
},
"slug": {
Type: schema.TypeString,
Computed: true,
Description: "The slug of the enterprise team. GitHub generates the slug from the team name and adds the ent: prefix.",
},
"team_id": {
Type: schema.TypeInt,
Computed: true,
Description: "The numeric ID of the enterprise team.",
},
},
}
}
func resourceGithubEnterpriseTeamCreate(ctx context.Context, d *schema.ResourceData, meta any) diag.Diagnostics {
client := meta.(*Owner).v3client
enterpriseSlug := d.Get("enterprise_slug").(string)
name := d.Get("name").(string)
description := d.Get("description").(string)
orgSelection := d.Get("organization_selection_type").(string)
groupID := d.Get("group_id").(string)
req := github.EnterpriseTeamCreateOrUpdateRequest{
Name: name,
OrganizationSelectionType: github.Ptr(orgSelection),
GroupID: github.Ptr(groupID), // Empty string is valid for no group
}
if description != "" {
req.Description = github.Ptr(description)
}
ctx = context.WithValue(ctx, ctxId, d.Id())
te, _, err := client.Enterprise.CreateTeam(ctx, enterpriseSlug, req)
if err != nil {
return diag.FromErr(err)
}
d.SetId(strconv.FormatInt(te.ID, 10))
// Set computed fields directly from API response
if err := d.Set("slug", te.Slug); err != nil {
return diag.FromErr(err)
}
if err := d.Set("team_id", int(te.ID)); err != nil {
return diag.FromErr(err)
}
return nil
}
func resourceGithubEnterpriseTeamRead(ctx context.Context, d *schema.ResourceData, meta any) diag.Diagnostics {
client := meta.(*Owner).v3client
enterpriseSlug := d.Get("enterprise_slug").(string)
teamID, err := strconv.ParseInt(d.Id(), 10, 64)
if err != nil {
return diag.FromErr(unconvertibleIdErr(d.Id(), err))
}
ctx = context.WithValue(ctx, ctxId, d.Id())
// Try to fetch by slug first (faster), but if the team was renamed we need
// to fall back to listing all teams and matching by numeric ID.
var te *github.EnterpriseTeam
if slug, ok := d.GetOk("slug"); ok {
if s := strings.TrimSpace(slug.(string)); s != "" {
candidate, _, getErr := client.Enterprise.GetTeam(ctx, enterpriseSlug, s)
if getErr == nil {
te = candidate
} else {
ghErr := &github.ErrorResponse{}
if errors.As(getErr, &ghErr) && ghErr.Response.StatusCode != http.StatusNotFound {
return diag.FromErr(getErr)
}
}
}
}
if te == nil {
te, err = findEnterpriseTeamByID(ctx, client, enterpriseSlug, teamID)
if err != nil {
return diag.FromErr(err)
}
if te == nil {
log.Printf("[INFO] Removing enterprise team %s/%s from state because it no longer exists in GitHub", enterpriseSlug, d.Id())
d.SetId("")
return nil
}
}
if err = d.Set("enterprise_slug", enterpriseSlug); err != nil {
return diag.FromErr(err)
}
if err = d.Set("name", te.Name); err != nil {
return diag.FromErr(err)
}
if te.Description != nil {
if err = d.Set("description", *te.Description); err != nil {
return diag.FromErr(err)
}
} else {
if err = d.Set("description", ""); err != nil {
return diag.FromErr(err)
}
}
if err = d.Set("slug", te.Slug); err != nil {
return diag.FromErr(err)
}
if err = d.Set("team_id", int(te.ID)); err != nil {
return diag.FromErr(err)
}
orgSelection := ""
if te.OrganizationSelectionType != nil {
orgSelection = *te.OrganizationSelectionType
}
if orgSelection == "" {
orgSelection = "disabled"
}
if err = d.Set("organization_selection_type", orgSelection); err != nil {
return diag.FromErr(err)
}
if te.GroupID != "" {
if err = d.Set("group_id", te.GroupID); err != nil {
return diag.FromErr(err)
}
} else {
if err = d.Set("group_id", ""); err != nil {
return diag.FromErr(err)
}
}
return nil
}
func resourceGithubEnterpriseTeamUpdate(ctx context.Context, d *schema.ResourceData, meta any) diag.Diagnostics {
client := meta.(*Owner).v3client
enterpriseSlug := d.Get("enterprise_slug").(string)
teamSlug := d.Get("slug").(string)
name := d.Get("name").(string)
description := d.Get("description").(string)
orgSelection := d.Get("organization_selection_type").(string)
groupID := d.Get("group_id").(string)
req := github.EnterpriseTeamCreateOrUpdateRequest{
Name: name,
OrganizationSelectionType: github.Ptr(orgSelection),
GroupID: github.Ptr(groupID), // Empty string clears the group
}
if description != "" {
req.Description = github.Ptr(description)
}
ctx = context.WithValue(ctx, ctxId, d.Id())
te, _, err := client.Enterprise.UpdateTeam(ctx, enterpriseSlug, teamSlug, req)
if err != nil {
return diag.FromErr(err)
}
// Update slug in case it changed (e.g., team was renamed)
if err := d.Set("slug", te.Slug); err != nil {
return diag.FromErr(err)
}
return nil
}
func resourceGithubEnterpriseTeamDelete(ctx context.Context, d *schema.ResourceData, meta any) diag.Diagnostics {
client := meta.(*Owner).v3client
enterpriseSlug := d.Get("enterprise_slug").(string)
ctx = context.WithValue(ctx, ctxId, d.Id())
teamSlug := strings.TrimSpace(d.Get("slug").(string))
if teamSlug == "" {
teamID, err := strconv.ParseInt(d.Id(), 10, 64)
if err != nil {
return diag.FromErr(unconvertibleIdErr(d.Id(), err))
}
te, err := findEnterpriseTeamByID(ctx, client, enterpriseSlug, teamID)
if err != nil {
return diag.FromErr(err)
}
if te == nil {
return nil
}
teamSlug = te.Slug
}
log.Printf("[INFO] Deleting enterprise team: %s/%s (%s)", enterpriseSlug, teamSlug, d.Id())
_, err := client.Enterprise.DeleteTeam(ctx, enterpriseSlug, teamSlug)
if err != nil {
// Already gone? That's fine, we wanted it deleted anyway.
ghErr := &github.ErrorResponse{}
if errors.As(err, &ghErr) && ghErr.Response.StatusCode == http.StatusNotFound {
return nil
}
return diag.FromErr(err)
}
return nil
}
func resourceGithubEnterpriseTeamImport(_ context.Context, d *schema.ResourceData, meta any) ([]*schema.ResourceData, error) {
// Import format: <enterprise_slug>/<team_id>
parts := strings.Split(d.Id(), "/")
if len(parts) != 2 {
return nil, fmt.Errorf("invalid import specified: supplied import must be written as <enterprise_slug>/<team_id>")
}
enterpriseSlug, teamID := parts[0], parts[1]
d.SetId(teamID)
if err := d.Set("enterprise_slug", enterpriseSlug); err != nil {
return nil, err
}
return []*schema.ResourceData{d}, nil
}