@@ -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/22 /2024
7
+ ms.date : 09/05 /2024
8
8
ms.service : azure-stack
9
9
ms.subservice : azure-stack-hci
10
10
---
@@ -96,31 +96,26 @@ Follow these steps in to change the deployment service principal:
96
96
97
97
## Change ARB service principal secret
98
98
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.
100
100
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:
108
102
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:
110
109
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
+ ```
123
118
124
119
## Next steps
125
120
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