Skip to content

Commit b5d219c

Browse files
Merge pull request #212451 from KimForss/main
LevelUp updates
2 parents 6e8582d + ffc3d8e commit b5d219c

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

articles/virtual-machines/workloads/sap/automation-configure-devops.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Configure your Azure DevOps Services for the SAP Deployment Automat
44
author: kimforss
55
ms.author: kimforss
66
ms.reviewer: kimforss
7-
ms.date: 08/30/2022
7+
ms.date: 09/25/2022
88
ms.topic: conceptual
99
ms.service: virtual-machines-sap
1010
---
@@ -25,7 +25,7 @@ You can use the following script to do a basic installation of Azure Devops Serv
2525
Log in to Azure Cloud Shell
2626
```bash
2727
export ADO_ORGANIZATION=https://dev.azure.com/<yourorganization>
28-
export ADO_PROJECT=SAP-Deployment-Automation
28+
export ADO_PROJECT='SAP Deployment Automation'
2929
wget https://raw.githubusercontent.com/Azure/sap-automation/main/deploy/scripts/create_devops_artifacts.sh -O devops.sh
3030
chmod +x ./devops.sh
3131
./devops.sh
@@ -38,23 +38,28 @@ Validate that the project has been created by navigating to the Azure DevOps por
3838
You can finalize the Azure DevOps configuration by running the following scripts on your local workstation. Open a PowerShell Console and define the environment variables. Replace the bracketed values with the actual values.
3939

4040
> [!IMPORTANT]
41-
> Run the following steps on your local workstation, also make sure that you have logged on to Azure using az login first.
41+
> Run the following steps on your local workstation, also make sure that you have logged on to Azure using az login first. Please also ensure that you have the latest Azure CLI installed by running the 'az upgrade' command.
4242
4343

4444
```powershell
4545
$Env:ADO_ORGANIZATION="https://dev.azure.com/<yourorganization>"
4646
47-
$Env:ADO_PROJECT="<yourProject>"
48-
$Env:YourPrefix="<yourPrefix>"
47+
$Env:ADO_PROJECT="SAP Deployment Automation"
4948
5049
$Env:ControlPlaneSubscriptionID="<YourControlPlaneSubscriptionID>"
5150
$Env:ControlPlaneSubscriptionName="<YourControlPlaneSubscriptionName>"
51+
5252
$Env:DevSubscriptionID="<YourDevSubscriptionID>"
5353
$Env:DevSubscriptionName="<YourDevSubscriptionName>"
5454
55+
56+
5557
```
5658
> [!NOTE]
57-
> The ControlPlaneSubscriptionID and DevSubscriptionID can use the same subscriptionID.
59+
> The ControlPlaneSubscriptionID and DevSubscriptionID can use the same subscriptionID.
60+
>
61+
> You can use the environment variable $Env:SDAF_APP_NAME for an existing Application registration, $Env:SDAF_MGMT_SPN_NAME for an existing service principal for the control plane and $Env:SDAF_DEV_SPN_NAME for an existing service principal for the workload zone plane. For the names use the Display Name of the existing resources.
62+
5863

5964

6065
Once the variables are defined run the following script to create the service principals and the application registration.
@@ -274,7 +279,7 @@ Create the deployment removal ARM pipeline by choosing _New Pipeline_ from the P
274279
| Path | `deploy/pipelines/11-remover-arm-fallback.yaml` |
275280
| Name | Deployment removal using ARM |
276281

277-
Save the Pipeline, to see the Save option select the chevron next to the Run button. Navigate to the Pipelines section and select the pipeline. Rename the pipeline to 'Deployment removal using ARM' by choosing 'Rename/Move' from the three-dot menu on the right.
282+
Save the Pipeline, to see the Save option select the chevron next to the Run button. Navigate to the Pipelines section and select the pipeline. Rename the pipeline to 'Deployment removal using ARM processor' by choosing 'Rename/Move' from the three-dot menu on the right.
278283

279284
> [!NOTE]
280285
> Only use this pipeline as last resort, removing just the resource groups will leave remnants that may complicate re-deployments.
@@ -319,7 +324,7 @@ The pipelines use a custom task to perform cleanup activities post deployment. T
319324

320325
## Variable definitions
321326

322-
The deployment pipelines are configured to use a set of predefined parameter values. In Azure DevOps the variables are defined using variable groups.
327+
The deployment pipelines are configured to use a set of predefined parameter values defined using variable groups.
323328

324329

325330
### Common variables

0 commit comments

Comments
 (0)