litellm/terraform/provider/docs/data-sources/project.md
Shivam Rawat 3653e5893f
feat(terraform): resource and data source parity with the community provider (#38158)
* feat(terraform): close key/team schema gaps, fix team read envelope, add import support

* feat(terraform): add fallback resource/data source and key/team block resources

* feat(terraform): add access group and unified access group resources and data sources

* feat(terraform): add guardrail and prompt resources and data sources

* feat(terraform): add agent and search tool resources and data sources

* feat(terraform): add user and budget resources and data sources

* feat(terraform): add tag and project resources and data sources

* docs(terraform): changelog and readme for parity additions

* feat(terraform): add data sources for keys, teams, models, organizations, and mcp servers

* fix(terraform): key update 400 on empty budget_duration, key info envelope, config-supplied key

* fix(terraform): hash raw keys to SHA-256 tokens in key lookup URLs and block resource IDs
2026-08-28 16:55:40 -07:00

43 lines
1.4 KiB
Markdown

# litellm_project (Data Source)
Retrieves information about an existing LiteLLM project, including its budget settings
## Example Usage
```hcl
data "litellm_project" "ml_experiments" {
project_id = "4a422a4c-e246-4d02-a1eb-13e835cd0725"
}
output "project_spend" {
value = data.litellm_project.ml_experiments.spend
}
```
## Argument Reference
The following arguments are supported:
* `project_id` - (Required) Unique identifier of the project to retrieve
## Attribute Reference
In addition to all arguments above, the following attributes are exported:
* `project_alias` - Human-friendly name for the project
* `description` - Description of the project
* `team_id` - The team ID this project belongs to
* `budget_id` - Budget ID associated with this project
* `models` - List of models the project can access
* `max_budget` - Maximum budget for this project
* `soft_budget` - Soft budget limit for warnings
* `budget_duration` - Budget reset duration
* `tpm_limit` - Tokens per minute limit
* `rpm_limit` - Requests per minute limit
* `max_parallel_requests` - Maximum parallel requests allowed
* `blocked` - Whether the project is blocked from making requests
* `spend` - Current spend for the project
* `created_at` - Timestamp when the project was created
* `updated_at` - Timestamp when the project was last updated
* `created_by` - User that created the project
* `updated_by` - User that last updated the project