get_project_details
Retrieve detailed project information, including configuration, tag bindings, workspace count, and status, using the specified project ID in Terraform Cloud.
Instructions
Get details for a specific project.
Retrieves comprehensive information about a project including its configuration, tag bindings, workspace count, and other attributes.
API endpoint: GET /projects/{project_id}
Args: project_id: The ID of the project (format: "prj-xxxxxxxx")
Returns: Project details including settings, configuration and status
See: docs/tools/project.md for reference documentation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}