From 91a11df5860cb6770278fcb05b7aec6382db60f3 Mon Sep 17 00:00:00 2001 From: Dave Arnold Date: Tue, 18 Feb 2025 23:42:10 -0800 Subject: [PATCH] Comment out repo_exists variable assignment for clarity in github_files.tf --- github_files.tf | 2 -- 1 file changed, 2 deletions(-) diff --git a/github_files.tf b/github_files.tf index 1480a92..52c2f5d 100644 --- a/github_files.tf +++ b/github_files.tf @@ -1,6 +1,4 @@ locals { - # 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 }