update_resource_schema
Modify the schema, version, and documentation URL of a Terraform resource within the IaC Memory MCP Server, enabling accurate updates for resource configurations.
Instructions
Update an existing Terraform resource's schema and related information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_doc_url | No | New documentation URL | |
new_schema | Yes | New schema | |
new_version | No | New version | |
resource_id | Yes | Resource ID |
Input Schema (JSON Schema)
{
"description": "Update an existing Terraform resource's schema and related information",
"properties": {
"new_doc_url": {
"description": "New documentation URL",
"type": "string"
},
"new_schema": {
"description": "New schema",
"type": "string"
},
"new_version": {
"description": "New version",
"type": "string"
},
"resource_id": {
"description": "Resource ID",
"type": "string"
}
},
"required": [
"resource_id",
"new_schema"
],
"type": "object"
}