Skip to content

Commit 4635294

Browse files
committed
Fix some errors and typos
1 parent 4ef580c commit 4635294

File tree

1 file changed

+18
-23
lines changed

1 file changed

+18
-23
lines changed

azure-stack/hci/manage/manage-secrets-rotation.md

Lines changed: 18 additions & 23 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/22/2024
7+
ms.date: 09/05/2024
88
ms.service: azure-stack
99
ms.subservice: azure-stack-hci
1010
---
@@ -96,31 +96,26 @@ Follow these steps in to change the deployment service principal:
9696
9797
## Change ARB service principal secret
9898
99-
This section describes how you can change the service principal used for Azure resource bridge created during deployment.
99+
This section describes how you can change the service principal used for Azure resource bridge that you created during deployment.
100100
101-
Follow these steps in to change the deployment service principal:
102-
103-
1. Sign on to your Microsoft Entra ID.
104-
105-
2. Locate the service principal for Azure resource bridge. The name of the service principal includes **DefaultARBApplication**.
106-
107-
3. Create a new client secret for the service principal.
101+
To change the deployment service principal, follow these steps:
108102
109-
4. Make a note of the `appID` for the existing service principal and the new `<client secret>`.
103+
1. Sign in to your Microsoft Entra ID.
104+
1. Locate the service principal for Azure resource bridge. The name of the service principal includes **DefaultARBApplication**.
105+
1. Create a new client secret for the service principal.
106+
1. Make a note of the `appID` for the existing service principal and the new `<client secret>`.
107+
1. Sign in to one of your Azure Stack HCI server nodes using the deployment user credentials.
108+
1. Run the following PowerShell command:
110109
111-
5. Sign on to one of your Azure Stack HCI server nodes using the deployment user credentials.
112-
113-
6. Run the following PowerShell command:
114-
115-
```powershell
116-
$SubscriptionId= "<Subscription ID>"
117-
$TenantId= "<Tenant ID>"
118-
$AppId = "<Application ID>"
119-
$secretText= "<Client secret>"
120-
$NewPassword = ConvertTo-SecureString -String $secretText -AsPlainText -Force
121-
Set-AzureStackRPSpCredential -SubscriptionID $SubscriptionId -TenantID $TenantId -AppId $AppId -NewPassword $NewPassword
122-
```
110+
```powershell
111+
$SubscriptionId= "<Subscription ID>"
112+
$TenantId= "<Tenant ID>"
113+
$AppId = "<Application ID>"
114+
$secretText= "<Client secret>"
115+
$NewPassword = ConvertTo-SecureString -String $secretText -AsPlainText -Force
116+
Set-AzureStackRPSpCredential -SubscriptionID $SubscriptionId -TenantID $TenantId -AppId $AppId -NewPassword $NewPassword
117+
```
123118

124119
## Next steps
125120

126-
- [Complete the prerequisites and checklist and install Azure Stack HCI, version 23H2](../deploy/deployment-prerequisites.md).
121+
[Complete the prerequisites and checklist and install Azure Stack HCI, version 23H2](../deploy/deployment-prerequisites.md).

0 commit comments

Comments
 (0)