Skip to content

Commit

Permalink
Set group_id correctly (#2133)
Browse files Browse the repository at this point in the history
  • Loading branch information
kfcampbell committed Feb 7, 2024
1 parent 2a3fb4d commit d6043fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github/resource_github_emu_group_mapping.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func resourceGithubEMUGroupMappingRead(d *schema.ResourceData, meta interface{})
if err = d.Set("etag", resp.Header.Get("ETag")); err != nil {
return err
}
if err = d.Set("group", group); err != nil {
if err = d.Set("group_id", int(*group.GroupID)); err != nil {
return err
}
return nil
Expand Down

0 comments on commit d6043fa

Please sign in to comment.