Merge pull request #778 from svanharmelen/f-fix-conversion-error
Fix conversion error
This commit is contained in:
commit
a78c69a8c8
|
@ -58,7 +58,7 @@ func providerConfigure(d *schema.ResourceData) (interface{}, error) {
|
||||||
ApiURL: d.Get("api_url").(string),
|
ApiURL: d.Get("api_url").(string),
|
||||||
ApiKey: d.Get("api_key").(string),
|
ApiKey: d.Get("api_key").(string),
|
||||||
SecretKey: d.Get("secret_key").(string),
|
SecretKey: d.Get("secret_key").(string),
|
||||||
Timeout: d.Get("timeout").(int64),
|
Timeout: int64(d.Get("timeout").(int)),
|
||||||
}
|
}
|
||||||
|
|
||||||
return config.NewClient()
|
return config.NewClient()
|
||||||
|
|
Loading…
Reference in New Issue