Skip to content

Commit e3e4764

Browse files
author
Nicholas Cecere
committed
chore: fix build and add rewrite notice
1 parent 1f99170 commit e3e4764

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# LiteLLM Terraform Provider
22

3+
> Heads-up: In January 2026 this provider will undergo a major rewrite. Releases will track LiteLLM versions directly (provider version = targeted LiteLLM version), with monthly updates on stable LiteLLM releases only. Expect breaking changes during this transition.
4+
35
This Terraform provider allows you to manage LiteLLM resources through Infrastructure as Code. It provides support for managing models, teams, team members, and API keys via the LiteLLM REST API.
46

57
## Features

litellm/resource_team_member_add.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ func resourceLiteLLMTeamMemberAddCreate(d *schema.ResourceData, m interface{}) e
6060
members := d.Get("member").(*schema.Set)
6161
maxBudget := d.Get("max_budget_in_team").(float64)
6262
hasMaxBudget := d.GetRawConfig().GetAttr("max_budget_in_team").IsNull() == false
63-
hasMaxBudget := d.GetRawConfig().GetAttr("max_budget_in_team").IsNull() == false
6463

6564
// Convert members to the expected format
6665
membersList := make([]map[string]interface{}, 0, members.Len())

0 commit comments

Comments
 (0)