diff --git a/docs/r/sql_database.html.markdown b/docs/r/sql_database.html.markdown
index 3cc83f7d3e9..abfbc327d2e 100644
--- a/docs/r/sql_database.html.markdown
+++ b/docs/r/sql_database.html.markdown
@@ -24,8 +24,10 @@ resource "google_sql_database_instance" "master" {
}
resource "google_sql_database" "users" {
- name = "users-db"
- instance = "${google_sql_database_instance.master.name}"
+ name = "users-db"
+ instance = "${google_sql_database_instance.master.name}"
+ charset = "latin1"
+ collation = "latin1_swedish_ci"
}
```
@@ -42,6 +44,11 @@ The following arguments are supported:
* `project` - (Optional) The project in which the resource belongs. If it
is not provided, the provider project is used.
+* `charset` - (Optional) The MySQL charset value (default "utf8").
+
+* `collation` - (Optional) The MySQL collation value (default
+ "utf8_general_ci").
+
## Attributes Reference
In addition to the arguments listed above, the following computed attributes are