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 24393a64ea
commit fc78bd934d

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"
}
```