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

1.4 KiB

page_title subcategory description
litellm_unified_access_group Data Source - terraform-provider-litellm Retrieves information about an existing LiteLLM unified access group.

litellm_unified_access_group (Data Source)

Retrieves information about an existing LiteLLM unified access group by ID.

Example Usage

data "litellm_unified_access_group" "engineering" {
  access_group_id = "b6e5f9d0-..."
}

output "engineering_models" {
  value = data.litellm_unified_access_group.engineering.access_model_names
}

Argument Reference

  • access_group_id - (Required) ID of the unified access group to look up.

Attribute Reference

  • id - The unified access group ID.

  • access_group_name - Display name of the unified access group.

  • description - Description of the unified access group.

  • access_model_names - Model names the access group grants access to.

  • access_mcp_server_ids - MCP server IDs the access group grants access to.

  • access_agent_ids - Agent IDs the access group grants access to.

  • assigned_team_ids - Team IDs the access group is assigned to.

  • assigned_key_ids - Key IDs the access group is assigned to.

  • created_at - Timestamp when the access group was created.

  • created_by - User who created the access group.

  • updated_at - Timestamp when the access group was last updated.

  • updated_by - User who last updated the access group.