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/tutorial.md
+59Lines changed: 59 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -908,6 +908,65 @@ For this example configuration, the resource group is `LAB-SECE-DEP05-INFRASTRUC
908
908
909
909
Select the playbook `1) BoM Downloader` to download the SAP software described in the BOM file into the storage account. Check that the `sapbits` container has all your media for installation.
910
910
911
+
You can either run the playbook using the configuration menu or directly from the command line.
912
+
913
+
```bash
914
+
915
+
cd ${HOME}/Azure_SAP_Automated_Deployment/WORKSPACES/SYSTEM/BOMS/
916
+
917
+
export ANSIBLE_PRIVATE_KEY_FILE=sshkey
918
+
919
+
playbook_options=(
920
+
--inventory-file="${sap_sid}_hosts.yaml"
921
+
--private-key=${ANSIBLE_PRIVATE_KEY_FILE}
922
+
--extra-vars="_workspace_directory=`pwd`"
923
+
--extra-vars="@sap-parameters.yaml"
924
+
--extra-vars="bom_processing=true"
925
+
"${@}"
926
+
)
927
+
928
+
# Run the playbook to retrieve the ssh key from the Azure key vault
0 commit comments