get_module_version_compatibility
Verify Ansible module compatibility with specific collection versions to ensure correct functionality and avoid version conflicts.
Instructions
Check module compatibility across collection versions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_name | Yes | Name of the Ansible collection | |
module_name | Yes | Name of the module to check | |
version | Yes | Target collection version to check compatibility against |
Input Schema (JSON Schema)
{
"description": "Check module compatibility across collection versions",
"properties": {
"collection_name": {
"description": "Name of the Ansible collection",
"type": "string"
},
"module_name": {
"description": "Name of the module to check",
"type": "string"
},
"version": {
"description": "Target collection version to check compatibility against",
"type": "string"
}
},
"required": [
"collection_name",
"module_name",
"version"
],
"type": "object"
}