IaC Memory MCP Server

update_resource_schema

Update an existing Terraform resource's schema and related information

Input Schema

NameRequiredDescriptionDefault
new_doc_urlNoNew documentation URL
new_schemaYesNew schema
new_versionNoNew version
resource_idYesResource 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" }