From 0d56e3ca3864bf07bc113da828022e5842db1306 Mon Sep 17 00:00:00 2001 From: charlesmmarshall Date: Tue, 25 Jul 2023 11:06:25 +0100 Subject: [PATCH] Remove the lifecycle hack for branches the branch attribute no longer exists on the repo resource relates to https://github.com/integrations/terraform-provider-github/issues/1037 #major --- github_repository.tf | 3 --- 1 file changed, 3 deletions(-) diff --git a/github_repository.tf b/github_repository.tf index bcabd24..f892c58 100644 --- a/github_repository.tf +++ b/github_repository.tf @@ -47,9 +47,6 @@ resource "github_repository" "repository" { lifecycle { ignore_changes = [ auto_init, - # this is a hack that is needed because of - # https://github.com/integrations/terraform-provider-github/issues/1037 - # branches, ] } }