litellm/terraform/provider/docs/data-sources/budget.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

895 B

litellm_budget Data Source

Retrieves information about an existing LiteLLM budget by ID

Example Usage

data "litellm_budget" "engineering" {
  budget_id = "engineering-monthly"
}

output "engineering_max_budget" {
  value = data.litellm_budget.engineering.max_budget
}

Argument Reference

  • budget_id (Required) - ID of the budget to retrieve

Attribute Reference

  • id - The budget ID
  • max_budget - Hard budget limit in USD
  • soft_budget - Soft budget limit in USD that triggers alerts
  • max_parallel_requests - Maximum concurrent requests allowed for this budget
  • tpm_limit - Maximum tokens per minute allowed for this budget
  • rpm_limit - Maximum requests per minute allowed for this budget
  • budget_duration - Budget reset period
  • model_max_budget - JSON string of per-model budget config
  • budget_reset_at - Datetime when the budget is reset