get-provider-details
Retrieve comprehensive details about an OpenTofu provider by specifying its namespace and name. Exclude the 'terraform-provider-' prefix to ensure accurate results.
Instructions
Get detailed information about a specific OpenTofu provider by namespace and name. Do NOT include 'terraform-provider-' prefix in the name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Provider name WITHOUT 'terraform-provider-' prefix (e.g., 'aws', 'kubernetes', 'azurerm') | |
namespace | Yes | Provider namespace (e.g., 'hashicorp', 'opentofu') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Provider name WITHOUT 'terraform-provider-' prefix (e.g., 'aws', 'kubernetes', 'azurerm')",
"minLength": 1,
"type": "string"
},
"namespace": {
"description": "Provider namespace (e.g., 'hashicorp', 'opentofu')",
"minLength": 1,
"type": "string"
}
},
"required": [
"namespace",
"name"
],
"type": "object"
}