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
Copy file name to clipboardExpand all lines: articles/sap/automation/deploy-control-plane.md
+20-3Lines changed: 20 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Overview of the control plane deployment process in SAP Deployment
4
4
author: kimforss
5
5
ms.author: kimforss
6
6
ms.reviewer: kimforss
7
-
ms.date: 12/15/2023
7
+
ms.date: 03/15/2026
8
8
ms.topic: how-to
9
9
ms.service: sap-on-azure
10
10
ms.subservice: sap-automation
@@ -23,13 +23,22 @@ The control plane deployment for [SAP Deployment Automation Framework](deploymen
23
23
24
24
## Prepare the deployment credentials
25
25
26
-
SAP Deployment Automation Framework uses service principals for deployments. To create a service principal for the control plane deployment, use an account that has permissions to create service principals:
26
+
SAP Deployment Automation Framework uses eithe managed identities (recommended) or service principals for deployments. To create a service principal for the control plane deployment, use an account that has permissions to create service principals:
27
27
28
28
```azurecli
29
29
az ad sp create-for-rbac --role="Contributor" --scopes="/subscriptions/<subscriptionID>" --name="<environment>-Deployment-Account"
30
30
31
31
```
32
32
33
+
To create a managed identity use the following script:
0 commit comments