Skip to content

Commit d6043fa

Browse files
authored
Set group_id correctly (#2133)
1 parent 2a3fb4d commit d6043fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github/resource_github_emu_group_mapping.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func resourceGithubEMUGroupMappingRead(d *schema.ResourceData, meta interface{})
9898
if err = d.Set("etag", resp.Header.Get("ETag")); err != nil {
9999
return err
100100
}
101-
if err = d.Set("group", group); err != nil {
101+
if err = d.Set("group_id", int(*group.GroupID)); err != nil {
102102
return err
103103
}
104104
return nil

0 commit comments

Comments
 (0)