Skip to content

Commit 36b953f

Browse files
Merge pull request #18206 from v-sissondan/manage-secrets
Update the CA Certificate password (Thomas)
2 parents 821be32 + f9ef02a commit 36b953f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

azure-local/manage/manage-secrets-rotation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: This article describes how to manage internal secret rotation on Az
44
author: alkohli
55
ms.author: alkohli
66
ms.topic: how-to
7-
ms.date: 04/09/2025
7+
ms.date: 06/16/2025
88
ms.service: azure-local
99
---
1010

@@ -190,14 +190,14 @@ The exact steps for secret rotation are different depending on the software vers
190190
Start-SecretRotation
191191
```
192192
193-
### Azure Local instance running 2408.2 to 2405.3
193+
### Azure Local instance running 2408.2 or earlier
194194
195195
1. Sign in to one of the Azure Local nodes using deployment user credentials.
196196
1. Update the CA Certificate password in ECE store. Run the following PowerShell command:
197197
198198
```PowerShell
199199
$SecureSecretText = ConvertTo-SecureString -String "<Replace with a strong password>" -AsPlainText -Force
200-
$CACertCred = New-Object -Type PSCredential -ArgumentList "CACertificateCred,$SecureSecretText"
200+
$CACertCred = New-Object -Type PSCredential -ArgumentList (CACertificateCred),$SecureSecretText
201201
Set-ECEServiceSecret -ContainerName CACertificateCred -Credential $CACertCred
202202
```
203203

0 commit comments

Comments
 (0)