initial commit
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
"""
|
||||
Prerequisites package for Zerto Python SDK Hands-On Lab.
|
||||
Contains configuration and common utilities.
|
||||
"""
|
||||
Binary file not shown.
@@ -0,0 +1,17 @@
|
||||
# Zerto API Configuration
|
||||
# Update these values with your ZVM details
|
||||
|
||||
# ZVM Connection Details
|
||||
ZVM_HOST = "192.168.111.20" #"zvm.example.com"
|
||||
ZVM_PORT = 443 # Default HTTPS port
|
||||
ZVM_SSL_VERIFY = False # Set to False for self-signed certificates
|
||||
|
||||
# Keycloak Authentication
|
||||
CLIENT_ID = "zerto-api" #"your-client-id"
|
||||
CLIENT_SECRET = "q0GUcbK1olq2Op27cpjvTHT5scKeQWBy" # "your-client-secret"
|
||||
|
||||
# Optional: Proxy settings if needed
|
||||
# PROXY = {
|
||||
# "http": "http://proxy.example.com:8080",
|
||||
# "https": "https://proxy.example.com:8080"
|
||||
# }
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
requests>=2.31.0
|
||||
python-keycloak>=2.8.0
|
||||
urllib3>=2.0.0
|
||||
python-dotenv>=1.0.0
|
||||
Reference in New Issue
Block a user