get_terraform_resource_info
Retrieve detailed schema and documentation for a Terraform resource by specifying the provider and resource name, enabling efficient IaC management.
Instructions
Retrieve comprehensive information about a Terraform resource including schema and documentation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| provider_name | Yes | Name of the Terraform provider | |
| resource_name | Yes | Name of the resource |
Input Schema (JSON Schema)
{
"description": "Retrieve comprehensive information about a Terraform resource including schema and documentation",
"properties": {
"provider_name": {
"description": "Name of the Terraform provider",
"type": "string"
},
"resource_name": {
"description": "Name of the resource",
"type": "string"
}
},
"required": [
"provider_name",
"resource_name"
],
"type": "object"
}