From: Alexandre Garand Date: Tue, 6 Aug 2019 10:48:46 +0000 (+0200) Subject: fix reading of test X-Git-Tag: v0.1.1~5^2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;ds=inline;h=4c25d89f7b248fb20b124fff6eb18b272b865463;hp=5a4ed01b2130166bd200fe8342052d7957765ba3;p=github%2Ffretlink%2Fterraform-provider-statuscake.git fix reading of test --- diff --git a/statuscake/resource_statuscaketest.go b/statuscake/resource_statuscaketest.go index 5af5b8f..88c7363 100644 --- a/statuscake/resource_statuscaketest.go +++ b/statuscake/resource_statuscaketest.go @@ -332,11 +332,8 @@ func ReadTest(d *schema.ResourceData, meta interface{}) error { return fmt.Errorf("Error Getting StatusCake Test Details for %s: Error: %s", d.Id(), err) } - if v, ok := d.GetOk("contact_group"); ok { - d.Set("contact_group", v) - } else if v, ok := d.GetOk("contact_id"); ok { - d.Set("contact_id", v) - } + d.Set("contact_id", testResp.ContactID) + d.Set("contact_group", testResp.ContactGroup) d.Set("website_name", testResp.WebsiteName) d.Set("website_url", testResp.WebsiteURL) d.Set("check_rate", testResp.CheckRate) @@ -362,10 +359,19 @@ func ReadTest(d *schema.ResourceData, meta interface{}) error { d.Set("do_not_find", testResp.DoNotFind) d.Set("status_codes", testResp.StatusCodes) d.Set("use_jar", testResp.UseJar) + d.Set("user_agent", testResp.UserAgent) d.Set("post_raw", testResp.PostRaw) d.Set("final_endpoint", testResp.FinalEndpoint) d.Set("enable_ssl_alert", testResp.EnableSSLAlert) d.Set("follow_redirect", testResp.FollowRedirect) + d.Set("ping_url", testResp.PingURL) + d.Set("basic_user", testResp.BasicUser) + d.Set("basic_pass", testResp.BasicPass) + d.Set("public", testResp.Public) + d.Set("branding", testResp.Branding) + d.Set("virus", testResp.Virus) + d.Set("real_browser", testResp.RealBrowser) + d.Set("RealBrowser", testResp.TestTags) return nil }