get_terraform_provider_info
Retrieve detailed information about a Terraform provider to simplify infrastructure-as-code management. Input the provider name to access its comprehensive data, stored and managed via 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"
}