Skip to content

Commit

Permalink
fix: update query annotation name and description max length to refle…
Browse files Browse the repository at this point in the history
…ct recent api change
  • Loading branch information
huntzinger92 committed Jan 21, 2025
1 parent 8647587 commit 79613fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions honeycombio/resource_query_annotation.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ func newQueryAnnotation() *schema.Resource {
"name": {
Type: schema.TypeString,
Required: true,
ValidateFunc: validation.StringLenBetween(1, 80),
ValidateFunc: validation.StringLenBetween(1, 320),
},
"description": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringLenBetween(1, 280),
ValidateFunc: validation.StringLenBetween(1, 1023),
},
},
}
Expand Down

0 comments on commit 79613fc

Please sign in to comment.