Skip to content

Commit bfe1023

Browse files
authored
Merge pull request #180570 from KimForss/master
Small tweaks
2 parents 35fcd1a + e81d3e4 commit bfe1023

File tree

2 files changed

+17
-28
lines changed

2 files changed

+17
-28
lines changed

articles/virtual-machines/workloads/sap/automation-faq.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ sections:
108108
- question: |
109109
What does the error "Retrieve SSH Key Secret Details" mean?
110110
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`.
112112
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`.
113113
114114
additionalContent: |

articles/virtual-machines/workloads/sap/automation-software.md

Lines changed: 16 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,25 @@ First, configure your deployer key vault secrets. For this example configuration
2424

2525
1. [Sign in to the Azure CLI](/cli/azure/authenticate-azure-cli) with the account you want to use.
2626

27-
```azurecli-interactive
27+
```azurecli
2828
az login
2929
```
3030
3131
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.
3232
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>";
3535
```
3636
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.
3838
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+
```
4242
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.
4444
45-
```azurecli-interactive
45+
```text
4646
sapbits-access-key
4747
sapbits-location-base-path
4848
```
@@ -55,12 +55,6 @@ Next, [configure your SAP parameters file](#configure-parameters-file) for the d
5555
5656
Configure the SAP parameters file:
5757
58-
1. Navigate to the SAP deployment workspace's directory.
59-
60-
```bash
61-
cd ~/Azure_SAP_Automated_Deployment/WORKSPACES/
62-
```
63-
6458
1. Create a new directory called `BOMS`:
6559
6660
```bash
@@ -73,10 +67,8 @@ Configure the SAP parameters file:
7367
cat <<EOF > sap-parameters.yaml
7468
---
7569
bom_base_name: S41909SPS03_v0006ms
76-
sapbits_location_base_path: https://<storage_account_FQDN>/sapbits
7770
kv_name: Name of your Management/Control Plane keyvault
78-
secret_prefix:
79-
...
71+
..
8072
EOF
8173
```
8274
@@ -90,31 +82,28 @@ Configure the SAP parameters file:
9082
9183
1. Change the value of `bom_base_name` to `S41909SPS03_v0006ms`.
9284
93-
2. Change the value of `sapbits_location_base_path` to the path to your storage account `sapbits`.
94-
95-
3. Change the value of `kv_name` to the name of the deployer key vault.
85+
1. Change the value of `kv_name` to the name of the deployer key vault.
9686
97-
4. (If needed) Change the value of `secret_prefix` to match the prefix in your environment (for example DEV-WEEU-SAP)
87+
1. (If needed) Change the value of `secret_prefix` to match the prefix in your environment (for example DEV-WEEU-SAP)
9888
9989
### Execute Ansible playbooks
10090
10191
Then, execute the Ansible playbooks. One way you can execute the playbooks is to use the validator test menu:
10292
103-
1. Run the validator test menu script:
93+
1. Run the download menu script:
10494
10595
```bash
106-
~/Azure_SAP_Automated_Deployment/sap-automation/deploy/ansible/validator_test_menu.sh
96+
~/Azure_SAP_Automated_Deployment/sap-automation/deploy/ansible/download_menu.sh
10797
```
10898
10999
1. Select the playbook to execute. For example:
110100
111-
```output
101+
```text
112102
1) BoM Downloader
113103
2) Quit
114104
Please select playbook:
115105
```
116106
117-
118107
Another option is to execute the Ansible playbooks using the command `ansible-playbook`.
119108
120109
```bash
@@ -127,4 +116,4 @@ ansible-playbook
127116
## Next steps
128117

129118
> [!div class="nextstepaction"]
130-
> [Get started with deploying the automation framework](automation-get-started.md)
119+
> [Deploy the SAP Infrastructure](automation-deploy-system.md)

0 commit comments

Comments
 (0)