add_ansible_collection
Add a new Ansible collection to the memory store with version, source repository, and documentation URLs for persistent IaC resource management and version tracking.
Instructions
Add a new Ansible collection to the memory store with version and documentation information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doc_url | Yes | Documentation URL | |
name | Yes | Collection name | |
source_url | Yes | Source repository URL | |
version | Yes | Collection version |
Input Schema (JSON Schema)
{
"description": "Add a new Ansible collection to the memory store with version and documentation information",
"properties": {
"doc_url": {
"description": "Documentation URL",
"type": "string"
},
"name": {
"description": "Collection name",
"type": "string"
},
"source_url": {
"description": "Source repository URL",
"type": "string"
},
"version": {
"description": "Collection version",
"type": "string"
}
},
"required": [
"name",
"version",
"source_url",
"doc_url"
],
"type": "object"
}