From 5fc8af991bb984a52ee8eb9bf9277692a2363d2c Mon Sep 17 00:00:00 2001 From: David Arnold <10138997+djaboxx@users.noreply.github.com> Date: Wed, 15 May 2024 15:36:11 -0700 Subject: [PATCH 1/2] Update collaborators.tf --- collaborators.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/collaborators.tf b/collaborators.tf index 0c91fdd..2f51727 100644 --- a/collaborators.tf +++ b/collaborators.tf @@ -4,4 +4,9 @@ resource "github_repository_collaborator" "collaborators" { repository = github_repository.repo.name username = each.key permission = each.value + lifecycle { + ignore_changes = [ + permission + ] + } } From 2065c48d026093ac8a7a333fd88041c660108f03 Mon Sep 17 00:00:00 2001 From: David Arnold <10138997+djaboxx@users.noreply.github.com> Date: Fri, 17 May 2024 09:34:03 -0700 Subject: [PATCH 2/2] Update variables.tf --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index ff58e45..ee0abc0 100644 --- a/variables.tf +++ b/variables.tf @@ -11,7 +11,7 @@ variable "github_codeowners_team" { } variable "github_repo_description" { - default = "Terraform Workspace" + default = null } variable "github_repo_topics" {