Skip to content

Commit

Permalink
Fix validator of backup_retention_days
Browse files Browse the repository at this point in the history
  • Loading branch information
kratkyzobak authored Apr 10, 2022
1 parent 09d0d0f commit 085097d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/services/mysql/mysql_flexible_server_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func resourceMysqlFlexibleServer() *pluginsdk.Resource {
Type: pluginsdk.TypeInt,
Optional: true,
Default: 7,
ValidateFunc: validation.IntBetween(7, 35),
ValidateFunc: validation.IntBetween(1, 35),
},

"create_mode": {
Expand Down

0 comments on commit 085097d

Please sign in to comment.