Skip to content

Commit 9fd5b11

Browse files
Improvements to filesystem and az cli documentation (#151)
1 parent 8ad5276 commit 9fd5b11

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/ossf-scoreboard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ jobs:
5050
retention-days: 5
5151

5252
- name: "Upload to code-scanning"
53-
uses: github/codeql-action/upload-sarif@07bb2b932c90fc1ec97637495e4072a0966fa74c # v3.28.20
53+
uses: github/codeql-action/upload-sarif@32f7c15247fa6542dc765bd40f6a15dc2caeed89 # v4.31.2
5454
with:
5555
sarif_file: results.sarif

docs/CONFIGURATION_CHECKS.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ You first need to make sure that you are logged into Azure CLI on the management
6868
az login --identity
6969

7070
# Login to Azure using User Assigned Managed Identity
71-
az login --identity -u <client-id-of-user-assigned-managed-identity>
71+
# When using management server with SLES or Ubuntu OS
72+
az login --identity -client-id <client-id-of-user-assigned-managed-identity>
73+
# When using management server with RHEL OS
74+
az login --identity --username <client-id-of-user-assigned-managed-identity>
7275

7376
# Set the desired subscription context
7477
az account set --subscription <subscription-id>

src/module_utils/filesystem_collector.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"""
55
Collectors for data collection in SAP Automation QA
66
"""
7+
import ipaddress
78
import json
89
import logging
910
from typing import Any

0 commit comments

Comments
 (0)