mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
* 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
795 B
795 B
| page_title | subcategory | description |
|---|---|---|
| litellm_access_group Data Source - terraform-provider-litellm | Retrieves information about an existing LiteLLM model access group. |
litellm_access_group (Data Source)
Retrieves information about an existing LiteLLM model access group by name.
Example Usage
data "litellm_access_group" "production" {
access_group = "production-models"
}
output "production_models" {
value = data.litellm_access_group.production.model_names
}
Argument Reference
access_group- (Required) Name of the access group to look up.
Attribute Reference
-
id- The access group name. -
model_names- List of model names in the access group. -
deployment_count- Number of deployments tagged with this access group.