get_collection_version_history
Retrieve version history of a specific Ansible collection to track changes and updates. Ideal for managing and monitoring IaC (Infrastructure-as-Code) resources efficiently.
Instructions
Retrieve version history for a specific Ansible collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_name | Yes | Name of the Ansible collection |
Input Schema (JSON Schema)
{
"description": "Retrieve version history for a specific Ansible collection",
"properties": {
"collection_name": {
"description": "Name of the Ansible collection",
"type": "string"
}
},
"required": [
"collection_name"
],
"type": "object"
}