From 667588c6378ab259d9fc198796a8688e4a29c1a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Pinson?= Date: Fri, 26 May 2017 14:50:51 +0200 Subject: [PATCH] github_team data source: fix wrong set Do not set members_count and repos_count, which are not declared. --- builtin/providers/github/data_source_github_team.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/builtin/providers/github/data_source_github_team.go b/builtin/providers/github/data_source_github_team.go index 8ef25c239852..c4b884fe6403 100644 --- a/builtin/providers/github/data_source_github_team.go +++ b/builtin/providers/github/data_source_github_team.go @@ -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 }