Skip to content

Commit

Permalink
provider/google Change default MySQL instance version to 5.6 (#9674)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
wendorf authored and stack72 committed Oct 27, 2016
1 parent 257be13 commit 407af92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion builtin/providers/google/resource_sql_database_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The following arguments are supported:

- - -

* `database_version` - (Optional, Default: `MYSQL_5_5`) The MySQL version to
* `database_version` - (Optional, Default: `MYSQL_5_6`) The MySQL version to
use. Can be either `MYSQL_5_5` or `MYSQL_5_6`.

* `name` - (Optional, Computed) The name of the instance. If the name is left
Expand Down

0 comments on commit 407af92

Please sign in to comment.