]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/commitdiff
fix reading of test
authorAlexandre Garand <alexandre.garand@fretlink.com>
Tue, 6 Aug 2019 10:48:46 +0000 (12:48 +0200)
committerAlexandre Garand <alexandre.garand@fretlink.com>
Tue, 6 Aug 2019 13:57:40 +0000 (15:57 +0200)
statuscake/resource_statuscaketest.go

index 5af5b8fafa35283df6c81af2af4c54158f1952c2..f8b69e3dadc4063d64e5251935d475137c27bb72 100644 (file)
@@ -337,6 +337,8 @@ func ReadTest(d *schema.ResourceData, meta interface{}) error {
        } else if v, ok := d.GetOk("contact_id"); ok {
                d.Set("contact_id", v)
        }
+
+       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 +364,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("test_tags", testResp.TestTags)
 
        return nil
 }