You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This section describes how you can rotate internal secrets. Internal secrets include certificates, passwords, secure strings, and keys used by the Azure Local infrastructure. Internal secret rotation is only required if you suspect one has been compromised, or you've received an expiration alert.
164
+
165
+
The exact steps for secret rotation are different depending on the software version your Azure Local instance is running.
166
+
167
+
### Azure Local instance running 2411.2 and later
168
+
169
+
1. Sign in to one of the Azure Local nodes using deployment user credentials.
170
+
1. Start secret rotation. Run the following PowerShell command:
171
+
172
+
```PowerShell
173
+
Start-SecretRotation
174
+
```
175
+
176
+
### Azure Local instance running 2411.1 to 2411.0
177
+
178
+
1. Sign in to one of the Azure Local nodes using deployment user credentials.
179
+
1. Update the CA Certificate password in ECE store. Run the following PowerShell command:
180
+
181
+
```PowerShell
182
+
$SecureSecretText = ConvertTo-SecureString -String "<Replace with a strong password>" -AsPlainText -Force
0 commit comments