mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 15:13:56 -06:00
5ddf83907c
``` === RUN TestProvider --- PASS: TestProvider (0.00s) === RUN TestProvider_impl --- PASS: TestProvider_impl (0.00s) === RUN TestAccGithubIssueLabel_basic --- PASS: TestAccGithubIssueLabel_basic (0.91s) === RUN TestAccGithubIssueLabel_importBasic --- PASS: TestAccGithubIssueLabel_importBasic (0.41s) === RUN TestAccGithubMembership_basic --- PASS: TestAccGithubMembership_basic (0.84s) === RUN TestAccGithubMembership_importBasic --- PASS: TestAccGithubMembership_importBasic (0.53s) === RUN TestAccGithubRepositoryCollaborator_basic --- PASS: TestAccGithubRepositoryCollaborator_basic (0.64s) === RUN TestAccGithubRepositoryCollaborator_importBasic --- PASS: TestAccGithubRepositoryCollaborator_importBasic (0.74s) === RUN TestAccGithubRepository_basic --- PASS: TestAccGithubRepository_basic (1.54s) === RUN TestAccGithubRepository_importBasic --- PASS: TestAccGithubRepository_importBasic (0.77s) === RUN TestAccGithubTeamMembership_basic --- PASS: TestAccGithubTeamMembership_basic (1.59s) === RUN TestAccGithubTeamMembership_importBasic --- PASS: TestAccGithubTeamMembership_importBasic (0.95s) === RUN TestAccGithubTeamRepository_basic --- PASS: TestAccGithubTeamRepository_basic (1.45s) === RUN TestAccGithubTeamRepository_importBasic --- PASS: TestAccGithubTeamRepository_importBasic (0.75s) === RUN TestAccCheckGetPermissions --- PASS: TestAccCheckGetPermissions (0.00s) === RUN TestAccGithubTeam_basic --- PASS: TestAccGithubTeam_basic (0.79s) === RUN TestAccGithubTeam_importBasic --- PASS: TestAccGithubTeam_importBasic (0.54s) === RUN TestAccGithubUtilRole_validation --- PASS: TestAccGithubUtilRole_validation (0.00s) === RUN TestAccGithubUtilTwoPartID --- PASS: TestAccGithubUtilTwoPartID (0.00s) PASS ok github.com/hashicorp/terraform/builtin/providers/github 12.455s ```
105 lines
2.5 KiB
Go
105 lines
2.5 KiB
Go
package github
|
|
|
|
import (
|
|
"github.com/google/go-github/github"
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
)
|
|
|
|
func resourceGithubTeam() *schema.Resource {
|
|
|
|
return &schema.Resource{
|
|
Create: resourceGithubTeamCreate,
|
|
Read: resourceGithubTeamRead,
|
|
Update: resourceGithubTeamUpdate,
|
|
Delete: resourceGithubTeamDelete,
|
|
Importer: &schema.ResourceImporter{
|
|
State: schema.ImportStatePassthrough,
|
|
},
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
"name": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Required: true,
|
|
},
|
|
"description": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Optional: true,
|
|
},
|
|
"privacy": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Optional: true,
|
|
Default: "secret",
|
|
ValidateFunc: validateValueFunc([]string{"secret", "closed"}),
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func resourceGithubTeamCreate(d *schema.ResourceData, meta interface{}) error {
|
|
client := meta.(*Organization).client
|
|
n := d.Get("name").(string)
|
|
desc := d.Get("description").(string)
|
|
p := d.Get("privacy").(string)
|
|
githubTeam, _, err := client.Organizations.CreateTeam(meta.(*Organization).name, &github.Team{
|
|
Name: &n,
|
|
Description: &desc,
|
|
Privacy: &p,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
d.SetId(fromGithubID(githubTeam.ID))
|
|
return resourceGithubTeamRead(d, meta)
|
|
}
|
|
|
|
func resourceGithubTeamRead(d *schema.ResourceData, meta interface{}) error {
|
|
client := meta.(*Organization).client
|
|
|
|
team, err := getGithubTeam(d, client)
|
|
if err != nil {
|
|
d.SetId("")
|
|
return nil
|
|
}
|
|
d.Set("description", team.Description)
|
|
d.Set("name", team.Name)
|
|
d.Set("privacy", team.Privacy)
|
|
return nil
|
|
}
|
|
|
|
func resourceGithubTeamUpdate(d *schema.ResourceData, meta interface{}) error {
|
|
client := meta.(*Organization).client
|
|
team, err := getGithubTeam(d, client)
|
|
|
|
if err != nil {
|
|
d.SetId("")
|
|
return nil
|
|
}
|
|
|
|
name := d.Get("name").(string)
|
|
description := d.Get("description").(string)
|
|
privacy := d.Get("privacy").(string)
|
|
team.Description = &description
|
|
team.Name = &name
|
|
team.Privacy = &privacy
|
|
|
|
team, _, err = client.Organizations.EditTeam(*team.ID, team)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
d.SetId(fromGithubID(team.ID))
|
|
return resourceGithubTeamRead(d, meta)
|
|
}
|
|
|
|
func resourceGithubTeamDelete(d *schema.ResourceData, meta interface{}) error {
|
|
client := meta.(*Organization).client
|
|
id := toGithubID(d.Id())
|
|
_, err := client.Organizations.DeleteTeam(id)
|
|
return err
|
|
}
|
|
|
|
func getGithubTeam(d *schema.ResourceData, github *github.Client) (*github.Team, error) {
|
|
id := toGithubID(d.Id())
|
|
team, _, err := github.Organizations.GetTeam(id)
|
|
return team, err
|
|
}
|