Update google_sql_user example as password is a required argument (#12053)

This commit is contained in:
Patrick Decat 2017-02-18 15:16:14 +01:00 committed by Paul Stack
parent 70f1113918
commit 5d731cd82b
1 changed files with 1 additions and 0 deletions

View File

@ -27,6 +27,7 @@ resource "google_sql_user" "users" {
name = "me"
instance = "${google_sql_database_instance.master.name}"
host = "me.com"
password = "changeme"
}
```