Skip to content

Commit e1f159a

Browse files
committed
Add Azure login instructions to CONFIGURATION_CHECKS.md; update section numbering for clarity
1 parent 9c1e470 commit e1f159a

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

docs/CONFIGURATION_CHECKS.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,22 @@ Ensure that the managed identity or service principal used by the controller vir
6767
1. "Reader" role to the user-assigned managed identity on the resource group containing the managed disks (if using Azure Managed Disks for SAP HANA data and log volumes).
6868
1. "Reader" role to the user-assigned managed identity on the resource group containing the shared disks (if using Azure Shared Disks for SBD devices).
6969

70-
### 4. Test Execution
70+
### 4. Azure Login (required)
71+
72+
Ensure that you are logged into Azure CLI on the controller VM with the appropriate subscription context:
73+
74+
```bash
75+
# Login to Azure using System Assigned Managed Identity
76+
az login --identity
77+
78+
# Login to Azure using User Assigned Managed Identity
79+
az login --identity -u <client-id-of-user-assigned-managed-identity>
80+
81+
# Set the desired subscription context
82+
az account set --subscription <subscription-id>
83+
```
84+
85+
### 5. Test Execution
7186

7287
To execute the script, run following command:
7388

@@ -91,7 +106,7 @@ To execute the script, run following command:
91106
./scripts/sap_automation_qa.sh --extra-vars='{"configuration_test_type":"ApplicationInstances"}'
92107
```
93108

94-
### 5. Viewing Test Results
109+
### 6. Viewing Test Results
95110

96111
After the test execution completes, a detailed HTML report is generated that summarizes the PASS/FAIL status of each test case and includes detailed execution logs for every step of the automation run.
97112

0 commit comments

Comments
 (0)