github_team data source: fix wrong set (#14859)

Do not set members_count and repos_count, which are not declared.
This commit is contained in:
Raphaël Pinson 2017-05-29 16:01:53 +02:00 committed by Paul Stack
parent 093861492d
commit 396dbac72f
1 changed files with 0 additions and 2 deletions

View File

@ -55,8 +55,6 @@ func dataSourceGithubTeamRead(d *schema.ResourceData, meta interface{}) error {
d.Set("description", *team.Description)
d.Set("privacy", *team.Privacy)
d.Set("permission", *team.Permission)
d.Set("members_count", *team.MembersCount)
d.Set("repos_count", *team.ReposCount)
return nil
}