File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description: This article describes how to manage internal secret rotation on Az
4
4
author : alkohli
5
5
ms.author : alkohli
6
6
ms.topic : how-to
7
- ms.date : 04/09 /2025
7
+ ms.date : 06/16 /2025
8
8
ms.service : azure-local
9
9
---
10
10
@@ -190,14 +190,14 @@ The exact steps for secret rotation are different depending on the software vers
190
190
Start-SecretRotation
191
191
```
192
192
193
- ### Azure Local instance running 2408.2 to 2405.3
193
+ ### Azure Local instance running 2408.2 or earlier
194
194
195
195
1. Sign in to one of the Azure Local nodes using deployment user credentials.
196
196
1. Update the CA Certificate password in ECE store. Run the following PowerShell command:
197
197
198
198
```PowerShell
199
199
$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
201
201
Set-ECEServiceSecret -ContainerName CACertificateCred -Credential $CACertCred
202
202
```
203
203
You can’t perform that action at this time.
0 commit comments