pan-scm-cli 0.3.1__tar.gz → 0.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/PKG-INFO +1 -1
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/pyproject.toml +1 -1
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/utils/config.py +3 -3
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/LICENSE +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/README.md +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/__init__.py +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/client.py +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/commands/README.md +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/commands/__init__.py +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/commands/command-styling.md +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/commands/deployment.py +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/commands/network.py +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/commands/objects.py +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/commands/security.py +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/main.py +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/tests/__init__.py +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/utils/__init__.py +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/utils/sdk_client.py +0 -0
- {pan_scm_cli-0.3.1 → pan_scm_cli-0.3.2}/src/scm_cli/utils/validators.py +0 -0
|
@@ -97,9 +97,9 @@ def get_auth_config() -> dict[str, str]:
|
|
|
97
97
|
|
|
98
98
|
# First try environment variables (PREFIX_client_id)
|
|
99
99
|
auth = {
|
|
100
|
-
"client_id": settings.get("client_id"),
|
|
101
|
-
"client_secret": settings.get("client_secret"),
|
|
102
|
-
"tsg_id": settings.get("tsg_id"),
|
|
100
|
+
"client_id": str(settings.get("client_id")),
|
|
101
|
+
"client_secret": str(settings.get("client_secret")),
|
|
102
|
+
"tsg_id": str(settings.get("tsg_id")),
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
# For backward compatibility, also check the scm_ prefixed settings
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|