Skip to content

Commit dba0fcb

Browse files
author
Kimmo Forss
committed
Updates to get started document
1 parent 1e68c5f commit dba0fcb

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

articles/sap/automation/get-started.md

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,51 @@ Get started quickly with the [SAP on Azure Deployment Automation Framework](depl
2222
- An [Azure CLI](/cli/azure/install-azure-cli) installation on your local computer.
2323
- An [Azure PowerShell](/powershell/azure/install-az-ps#update-the-azure-powershell-module) installation on your local computer.
2424
- A Service Principal to use for the control plane deployment
25+
- Ability to create an Azure Devops project if you want to use Azure DevOps for deployment.
2526

2627
Some of the prerequisites may already be installed in your deployment environment. Both Cloud Shell and the deployer have Terraform and the Azure CLI installed.
27-
## Clone the repository
2828

29-
Clone the repository and prepare the execution environment by using the following steps:
29+
## Use SAP on Azure Deployment Automation Framework from Azure DevOps Services
30+
31+
Using Azure DevOps streamlines the deployment process by providing pipelines that can be executed to perform both the infrastructure deployment and the configuration and SAP installation activities.
32+
You can use Azure Repos to store your configuration files and Azure Pipelines to deploy and configure the infrastructure and the SAP application.
33+
34+
### Sign up for Azure DevOps Services
35+
36+
To use Azure DevOps Services, you need an Azure DevOps organization. An organization is used to connect groups of related projects. Use your work or school account to automatically connect your organization to your Azure Active Directory (Azure AD). To create an account, open [Azure DevOps](https://azure.microsoft.com/services/devops/) and either _sign-in_ or create a new account.
37+
38+
Follow the guidance here [Configure Azure DevOps for SDAF](configure-devops.md) to configure Azure DevOps for the SAP on Azure Deployment Automation Framework.
39+
40+
## Creating the SAP on Azure Deployment Automation Framework environment without Azure DevOps
41+
42+
You can run the SAP on Azure Deployment Automation Framework from a virtual machine in Azure. The following steps describe how to create the environment.
43+
44+
Clone the repository and prepare the execution environment by using the following steps on a Linux Virtual machine in Azure:
45+
46+
Ensure the Virtual Machine has the following prerequisites installed:
47+
- git
48+
49+
Ensure that the virtual machine is using either a system assigned or user assigned identity with permissions on the subscription to create resources.
50+
3051

3152
- Create a directory called `Azure_SAP_Automated_Deployment` for your automation framework deployment.
3253

3354
```bash
3455
mkdir -p ~/Azure_SAP_Automated_Deployment; cd $_
35-
git clone https://github.com/Azure/sap-automation-bootstrap.git config
3656

3757
git clone https://github.com/Azure/sap-automation.git sap-automation
3858

3959
git clone https://github.com/Azure/sap-automation-samples.git samples
60+
61+
git clone https://github.com/Azure/sap-automation-bootstrap.git config
62+
63+
cd sap-automation/deploy/scripts
64+
65+
./configure_deployer.sh
4066
```
4167

4268

69+
4370
> [!TIP]
4471
> The deployer already clones the required repositories.
4572

0 commit comments

Comments
 (0)