pulumi-registry-get-resource
Retrieve detailed information about a specific cloud resource from the Pulumi Registry by specifying provider, module, and resource type for accurate configuration and management.
Instructions
Get information about a specific resource from the Pulumi Registry
Input Schema
Name | Required | Description | Default |
---|---|---|---|
module | No | The module to query (e.g., 's3', 'ec2', 'lambda'). Optional for smaller providers, will be 'index by default. | |
provider | Yes | The cloud provider (e.g., 'aws', 'azure', 'gcp', 'random') or github.com/org/repo for Git-hosted components | |
resource | Yes | The resource type to query (e.g., 'Bucket', 'Function', 'Instance') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"module": {
"description": "The module to query (e.g., 's3', 'ec2', 'lambda'). Optional for smaller providers, will be 'index by default.",
"type": "string"
},
"provider": {
"description": "The cloud provider (e.g., 'aws', 'azure', 'gcp', 'random') or github.com/org/repo for Git-hosted components",
"type": "string"
},
"resource": {
"description": "The resource type to query (e.g., 'Bucket', 'Function', 'Instance')",
"type": "string"
}
},
"required": [
"provider",
"resource"
],
"type": "object"
}