Claude 1
This commit is contained in:
30
sophos-xgs-ansible/roles/sophos_common/vars/main.yml
Normal file
30
sophos-xgs-ansible/roles/sophos_common/vars/main.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
---
|
||||
# ============================================================================
|
||||
# Sophos Common Role - Internal Variables
|
||||
# ============================================================================
|
||||
# These variables are internal to the role and should not be overridden.
|
||||
# ============================================================================
|
||||
|
||||
# API endpoint paths (Sophos XGS XML API)
|
||||
sophos_api_base_path: "/webconsole/APIController"
|
||||
|
||||
# XML API request wrapper template
|
||||
sophos_api_request_template: |
|
||||
<Request>
|
||||
<Login>
|
||||
<Username>{{ sophos_api_username }}</Username>
|
||||
<Password>{{ sophos_api_password }}</Password>
|
||||
</Login>
|
||||
{{ api_request_body }}
|
||||
</Request>
|
||||
|
||||
# Supported firmware versions (for validation)
|
||||
sophos_supported_firmware_versions:
|
||||
- "19.0"
|
||||
- "19.5"
|
||||
- "20.0"
|
||||
|
||||
# Default HTTP headers for API requests
|
||||
sophos_api_default_headers:
|
||||
Content-Type: "application/x-www-form-urlencoded"
|
||||
Accept: "application/xml"
|
||||
Reference in New Issue
Block a user