From 889a955e358055b828a36db52cb7249aba04fad7 Mon Sep 17 00:00:00 2001 From: Dave Arnold Date: Tue, 18 Feb 2025 21:44:28 -0800 Subject: [PATCH] Comment out repo_exists variable assignment for clarity in github_files.tf --- github_files.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github_files.tf b/github_files.tf index f3bee96..b3e2fb6 100644 --- a/github_files.tf +++ b/github_files.tf @@ -1,5 +1,5 @@ locals { - repo_exists = var.create_repo ? github_repository.repo[0] : data.github_repository.existing[0] + # repo_exists = var.create_repo ? github_repository.repo[0] : data.github_repository.existing[0] # Process files only if commit signing is not required or if explicitly allowed should_manage_files = !try(local.repo_exists.require_signed_commits, false) || var.allow_unsigned_files