From 396dbac72f494bbd1dde9482600c8bcf2adaec96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Pinson?= Date: Mon, 29 May 2017 16:01:53 +0200 Subject: [PATCH] github_team data source: fix wrong set (#14859) 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 8ef25c239..c4b884fe6 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 }