From 2e09b46f690e69da416fe38fd854967aa4fb16a3 Mon Sep 17 00:00:00 2001 From: Carl Tashian Date: Thu, 28 May 2026 09:29:04 -0700 Subject: [PATCH] Fix subject CN for agent --- tutorials/connect-fleet-dm-to-smallstep.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorials/connect-fleet-dm-to-smallstep.mdx b/tutorials/connect-fleet-dm-to-smallstep.mdx index 55220905..477ca9d7 100644 --- a/tutorials/connect-fleet-dm-to-smallstep.mdx +++ b/tutorials/connect-fleet-dm-to-smallstep.mdx @@ -536,7 +536,7 @@ Find the Intermediate CA's SHA-1 fingerprint in [**Certificate Manager → Autho chr - CN=%COMPUTERNAME%,OU=$FLEET_VAR_SCEP_RENEWAL_ID + CN=step-agent-bootstrap,OU=$FLEET_VAR_SCEP_RENEWAL_ID @@ -629,8 +629,8 @@ If (-NOT (Test-Path $RegistryPath)) { } Set-ItemProperty -Path $RegistryPath -Name "TeamSlug" -Value "" -Set-ItemProperty -Path $RegistryPath -Name "CAFingerprint" -Value "" -Set-ItemProperty -Path $RegistryPath -Name "Certificate" -Value "capi:store-location=machine;store=My;issuer=Smallstep () Agents Intermediate CA;cn=$env:COMPUTERNAME" +Set-ItemProperty -Path $RegistryPath -Name "CAFingerprint" -Value "" +Set-ItemProperty -Path $RegistryPath -Name "Certificate" -Value "capi:store-location=machine;store=My;issuer=Smallstep () Agents Intermediate CA;cn=step-agent-bootstrap" ```