terraform/provider/docs/resources/team_block.md
Manages the blocked state of an existing LiteLLM team. Creating this resource blocks the team (all calls from its keys are rejected); destroying it unblocks the team.
If the team is unblocked outside of Terraform (or deleted), the resource is removed from state and Terraform plans to re-block it on the next apply.
resource "litellm_team" "example" {
team_alias = "suspended-team"
}
resource "litellm_team_block" "example" {
team_id = litellm_team.example.id
}
The following arguments are supported:
team_id - (Required, Forces new resource) The ID of the team to block.In addition to the arguments above, the following attributes are exported:
id - The team ID.blocked - Whether the team is currently blocked. Always true while this resource exists.Team blocks can be imported using the team ID:
terraform import litellm_team_block.example team-1234