get_provider_docs
Retrieve Terraform provider documentation including version details, configuration instructions, usage examples, and upgrade guides from GitHub.
Instructions
Get the main documentation page for a Terraform provider.
This fetches the provider's overview documentation from GitHub which typically includes:
- Version information and compatibility notes
- Authentication and configuration
- Example usage
- Important notes about breaking changes
- Upgrade guides between versions
Args:
namespace: Provider namespace (e.g., 'hashicorp')
name: Provider name (e.g., 'aws', 'azurerm', 'google')
version: Provider version (default: 'latest')
Returns:
Dictionary containing provider documentation content in markdown format
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| namespace | Yes | ||
| name | Yes | ||
| version | No | latest |