Skip to content

Commit

Permalink
fix(r/repository): suppress etag changes (#909)
Browse files Browse the repository at this point in the history
/cc #796
  • Loading branch information
Jeremy Udit authored Sep 22, 2021
1 parent 62c46be commit 654b4e5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions github/resource_github_repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,9 @@ func resourceGithubRepository() *schema.Resource {
"etag": {
Type: schema.TypeString,
Computed: true,
DiffSuppressFunc: func(k, old, new string, d *schema.ResourceData) bool {
return true
},
},
"template": {
Type: schema.TypeList,
Expand Down

0 comments on commit 654b4e5

Please sign in to comment.