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
@@ -808,24 +808,24 @@ For this example configuration, the resource group is `MGMT-NOEU-DEP00-INFRASTRU
808
808
809
809
1. Connect to your deployer VM for the following steps. A copy of the repo is now there.
810
810
811
-
1. Add a secret with the username for your SAP user account. Replace `<vaultID>` with the name of your deployer key vault. Also replace `<sap-username>` with your SAP username.
811
+
1. Add a secret with the username for your SAP user account. Replace `<vaultName>` with the name of your deployer key vault. Also replace `<sap-username>` with your SAP username.
812
812
813
813
```bash
814
-
export key_vault=<vaultID>
814
+
export key_vault=<vaultName>
815
815
sap_username=<sap-username>
816
816
817
817
az keyvault secret set --name "S-Username" --vault-name $key_vault --value "${sap_username}";
818
818
```
819
819
820
-
1. Add a secret with the password for your SAP user account. Replace `<vaultID>` with your deployer key vault name and replace `<sap-password>` with your SAP password.
820
+
1. Add a secret with the password for your SAP user account. Replace `<vaultName>` with your deployer key vault name and replace `<sap-password>` with your SAP password.
821
821
822
822
> [!NOTE]
823
823
> The use of single quotation marks when you set `sap_user_password` is important. The use of special characters in the password can otherwise cause unpredictable results.
824
824
825
825
```azurecli
826
826
sap_user_password='<sap-password>'
827
827
828
-
az keyvault secret set --name "S-Password" --vault-name "${key_vault}" --value"${sap_user_password}";
828
+
az keyvault secret set --name "S-Password" --vault-name "${key_vault}" --value="${sap_user_password}";
829
829
```
830
830
831
831
1. Configure your SAP parameters file for the download process. Then, download the SAP software by using Ansible playbooks. Run the following commands:
@@ -845,7 +845,7 @@ For this example configuration, the resource group is `MGMT-NOEU-DEP00-INFRASTRU
0 commit comments