get_terraform_resource_info
Retrieve detailed schema and documentation for a specific Terraform resource by providing the provider and resource name, aiding Infrastructure-as-Code development and 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"
}