Spell `ssl_mode` like `sslmode`

This commit is contained in:
Sean Chittenden 2016-09-05 17:10:15 -07:00
parent 655617ed6a
commit 7e5ccc089b
No known key found for this signature in database
GPG Key ID: 4EBC9DC16C2E5E16
1 changed files with 1 additions and 1 deletions

View File

@ -68,8 +68,8 @@ func providerConfigure(d *schema.ResourceData) (interface{}, error) {
Port: d.Get("port").(int),
Username: d.Get("username").(string),
Password: d.Get("password").(string),
SslMode: d.Get("ssl_mode").(string),
Timeout: d.Get("connect_timeout").(int),
SslMode: d.Get("sslmode").(string),
}
client, err := config.NewClient()