From b27fe6f002f4ba508eadee021396e4ab685553f1 Mon Sep 17 00:00:00 2001 From: gsadmin Date: Fri, 31 Jul 2026 22:34:27 -0400 Subject: [PATCH] Drop a stale variable from the profile creation log line The line still interpolated $enrollmentType, which went away when profile creation stopped varying by enrollment method. Every run since had adopted existing profiles, so the create path never executed and never surfaced it. A run against an emptied project failed there immediately. Co-Authored-By: Claude Opus 5 --- Tools/Initialize-InfisicalCertManagerEnvironment.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/Initialize-InfisicalCertManagerEnvironment.ps1 b/Tools/Initialize-InfisicalCertManagerEnvironment.ps1 index e6f378d..3df8d20 100644 --- a/Tools/Initialize-InfisicalCertManagerEnvironment.ps1 +++ b/Tools/Initialize-InfisicalCertManagerEnvironment.ps1 @@ -1140,7 +1140,7 @@ Set-StrictMode -Version Latest $created = Invoke-InfisicalApi -Method 'POST' -Path '/api/v1/cert-manager/certificate-profiles' -Body $body $createdProfile = Get-ApiObject -InputObject $created -Name 'certificateProfile' $resolved[$definition.Slug] = $createdProfile - Write-Step "profile '$($definition.Slug)' ($($createdProfile.id)) enrollment=$enrollmentType" -Status 'Created' + Write-Step "profile '$($definition.Slug)' ($($createdProfile.id))" -Status 'Created' } return $resolved