Skip to content

Commit a64757b

Browse files
author
Kimmo Forss
committed
Variable name updates
1 parent ce122c1 commit a64757b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/sap/automation/tutorial.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ export tfstate_storage_account="<storageaccountName>"
674674
export deployer_env_code="MGMT"
675675
export sap_env_code="DEV"
676676
export region_code="<region_code>"
677-
export key_vault="<vaultID>"
677+
export key_vault="<vaultName>"
678678
679679
export deployer_vnet_code="DEP01"
680680
export vnet_code="SAP02"
@@ -808,24 +808,24 @@ For this example configuration, the resource group is `MGMT-NOEU-DEP00-INFRASTRU
808808
809809
1. Connect to your deployer VM for the following steps. A copy of the repo is now there.
810810
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.
812812
813813
```bash
814-
export key_vault=<vaultID>
814+
export key_vault=<vaultName>
815815
sap_username=<sap-username>
816816
817817
az keyvault secret set --name "S-Username" --vault-name $key_vault --value "${sap_username}";
818818
```
819819
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.
821821
822822
> [!NOTE]
823823
> 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.
824824
825825
```azurecli
826826
sap_user_password='<sap-password>'
827827
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}";
829829
```
830830
831831
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
845845
```yaml
846846
847847
bom_base_name: S4HANA_2021_FP01_v0001ms
848-
deployer_kv_name: <Deployer KeyVault Name>
848+
deployer_kv_name: <vaultName>
849849
BOM_directory: ${HOME}/Azure_SAP_Automated_Deployment/samples/SAP
850850
851851
```

0 commit comments

Comments
 (0)