get_terraform_provider_info
Retrieve detailed information about a specific Terraform provider to support version tracking, relationship mapping, and IaC component management in the IaC Memory MCP Server.
Instructions
Retrieve comprehensive information about a Terraform provider
Input Schema
Name | Required | Description | Default |
---|---|---|---|
provider_name | Yes | Name of the Terraform provider |
Input Schema (JSON Schema)
{
"description": "Retrieve comprehensive information about a Terraform provider",
"properties": {
"provider_name": {
"description": "Name of the Terraform provider",
"type": "string"
}
},
"required": [
"provider_name"
],
"type": "object"
}