get-module-details
Retrieve detailed information about OpenTofu modules by specifying namespace, name, and target platform to streamline module selection and usage.
Instructions
Get detailed information about a specific OpenTofu module by namespace, name, and target. Use the simple module name, NOT the full repository name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Simple module name WITHOUT 'terraform-aws-' or similar prefix (e.g., 'vpc', 's3-bucket') | |
namespace | Yes | Module namespace without prefix (e.g., 'terraform-aws-modules') | |
target | Yes | Module target platform (e.g., 'aws', 'kubernetes', 'azurerm') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Simple module name WITHOUT 'terraform-aws-' or similar prefix (e.g., 'vpc', 's3-bucket')",
"minLength": 1,
"type": "string"
},
"namespace": {
"description": "Module namespace without prefix (e.g., 'terraform-aws-modules')",
"minLength": 1,
"type": "string"
},
"target": {
"description": "Module target platform (e.g., 'aws', 'kubernetes', 'azurerm')",
"minLength": 1,
"type": "string"
}
},
"required": [
"namespace",
"name",
"target"
],
"type": "object"
}