Skip to content

Commit

Permalink
Fix gamelift_game_session_queue.name max length
Browse files Browse the repository at this point in the history
  • Loading branch information
Hinidu committed Nov 2, 2018
1 parent c5bcae6 commit 90371dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/resource_aws_gamelift_game_session_queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func resourceAwsGameliftGameSessionQueue() *schema.Resource {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: validation.StringLenBetween(1, 1024),
ValidateFunc: validation.StringLenBetween(1, 128),
},
"player_latency_policy": {
Type: schema.TypeList,
Expand Down

0 comments on commit 90371dd

Please sign in to comment.