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/virtual-machines/workloads/sap/automation-faq.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@ sections:
108
108
- question: |
109
109
What does the error "Retrieve SSH Key Secret Details" mean?
110
110
answer: |
111
-
When you deploy the SAP HANA software from `test_menu.sh`, you might get the fatal error `Retrieve SSH Key Secret Details`.
111
+
When you deploy the SAP HANA software from `configuration_menu.sh`, you might get the fatal error `Retrieve SSH Key Secret Details`.
112
112
Make sure that the name of the secrets in the user credentials' key vault match the environment naming prefix. For example, you might need to change `DEV-<ID>-SAP01` to `DEV-<ID>-SAP`.
Copy file name to clipboardExpand all lines: articles/virtual-machines/workloads/sap/automation-software.md
+16-27Lines changed: 16 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,25 +24,25 @@ First, configure your deployer key vault secrets. For this example configuration
24
24
25
25
1.[Sign in to the Azure CLI](/cli/azure/authenticate-azure-cli) with the account you want to use.
26
26
27
-
```azurecli-interactive
27
+
```azurecli
28
28
az login
29
29
```
30
30
31
31
1. Add a secret with the username for your SAP user account. Replace `<keyvault-name>` with the name of your deployer key vault. Also replace `<sap-username>` with your SAP username.
32
32
33
-
```azurecli-interactive
34
-
az keyvault secret set --name "S-Username" --vault-name "<keyvault-name>" --value "<sap-username>";
33
+
```azurecli
34
+
az keyvault secret set --name "S-Username" --vault-name "<keyvault-name>" --value "<sap-username>";
35
35
```
36
36
37
-
2. Add a secret with the password for your SAP user account. Replace `<keyvault-name>` with the name of your deployer key vault. Also replace `<sap-password>` with your SAP password.
37
+
1. Add a secret with the password for your SAP user account. Replace `<keyvault-name>` with the name of your deployer key vault. Also replace `<sap-password>` with your SAP password.
38
38
39
-
```azurecli-interactive
40
-
az keyvault secret set --name "S-Password" --vault-name "<keyvault-name>" --value "<sap-password>";
41
-
```
39
+
```azurecli
40
+
az keyvault secret set --name "S-Password" --vault-name "<keyvault-name>" --value "<sap-password>";
41
+
```
42
42
43
-
3. There are two other secrets which are needed in this step for the storage account `sapbits`, are automatically setup by the automation framework. However its always good to verify whether these are existed in your deployer keyvault or not.
43
+
1. There are two other secrets which are needed in this step for the storage account `sapbits`, are automatically setup by the automation framework. However its always good to verify whether these are existed in your deployer keyvault or not.
44
44
45
-
```azurecli-interactive
45
+
```text
46
46
sapbits-access-key
47
47
sapbits-location-base-path
48
48
```
@@ -55,12 +55,6 @@ Next, [configure your SAP parameters file](#configure-parameters-file) for the d
55
55
56
56
Configure the SAP parameters file:
57
57
58
-
1. Navigate to the SAP deployment workspace's directory.
59
-
60
-
```bash
61
-
cd ~/Azure_SAP_Automated_Deployment/WORKSPACES/
62
-
```
63
-
64
58
1. Create a new directory called `BOMS`:
65
59
66
60
```bash
@@ -73,10 +67,8 @@ Configure the SAP parameters file:
0 commit comments