From 8a3f1e141377f563f8945dc1eee3d1e4346b68d1 Mon Sep 17 00:00:00 2001 From: David Arnold <10138997+djaboxx@users.noreply.github.com> Date: Tue, 29 Oct 2024 11:32:47 -0700 Subject: [PATCH] Update collaborators.tf --- collaborators.tf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/collaborators.tf b/collaborators.tf index d8680ac..5ffe416 100644 --- a/collaborators.tf +++ b/collaborators.tf @@ -4,4 +4,7 @@ resource "github_repository_collaborator" "collaborators" { repository = github_repository.repo.name username = each.key permission = each.value + depends_on = [ + github_repository.repo + ] }