update_module_version
Update an Ansible module's schema, version, and documentation URL in the IAC Memory MCP Server to maintain accurate Infrastructure-as-Code configurations.
Instructions
Update an existing Ansible module's schema and related information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
module_id | Yes | Module ID | |
new_doc_url | No | New documentation URL | |
new_schema | Yes | New schema | |
new_version | No | New version |
Input Schema (JSON Schema)
{
"description": "Update an existing Ansible module's schema and related information",
"properties": {
"module_id": {
"description": "Module ID",
"type": "string"
},
"new_doc_url": {
"description": "New documentation URL",
"type": "string"
},
"new_schema": {
"description": "New schema",
"type": "string"
},
"new_version": {
"description": "New version",
"type": "string"
}
},
"required": [
"module_id",
"new_schema"
],
"type": "object"
}