From b2d92a6ea6702727f2c9546d01a6eed2f57d07c1 Mon Sep 17 00:00:00 2001 From: Dan Wendorf Date: Thu, 27 Oct 2016 16:11:08 -0700 Subject: [PATCH] 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. --- resource_sql_database_instance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resource_sql_database_instance.go b/resource_sql_database_instance.go index 7ee5b5d6..128e4b74 100644 --- a/resource_sql_database_instance.go +++ b/resource_sql_database_instance.go @@ -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, },