provider/google Change default MySQL instance version to 5.6 (#9674)

The Google Cloud SQL API defaults to 5.6, and 5.6 is the only version avaiable
to both first- and second-generation Cloud SQL instances.
This commit is contained in:
Dan Wendorf 2016-10-27 16:11:08 -07:00 committed by Paul Stack
parent 5ffffe49ac
commit b2d92a6ea6

View File

@ -154,7 +154,7 @@ func resourceSqlDatabaseInstance() *schema.Resource {
"database_version": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Default: "MYSQL_5_5",
Default: "MYSQL_5_6",
ForceNew: true,
},