enable contact-group id in statuscake test
This commit is contained in:
parent
55ba6ebd3d
commit
dfa917b670
|
@ -53,6 +53,10 @@ func resourceStatusCakeTest() *schema.Resource {
|
||||||
Type: schema.TypeInt,
|
Type: schema.TypeInt,
|
||||||
Computed: true,
|
Computed: true,
|
||||||
},
|
},
|
||||||
|
"contact_id": &schema.Schema{
|
||||||
|
Type: schema.TypeInt,
|
||||||
|
Optional: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -151,5 +155,8 @@ func getStatusCakeTestInput(d *schema.ResourceData) *statuscake.Test {
|
||||||
if v, ok := d.GetOk("timeout"); ok {
|
if v, ok := d.GetOk("timeout"); ok {
|
||||||
test.Timeout = v.(int)
|
test.Timeout = v.(int)
|
||||||
}
|
}
|
||||||
|
if v, ok := d.GetOk("contact_id"); ok {
|
||||||
|
test.ContactID = v.(int)
|
||||||
|
}
|
||||||
return test
|
return test
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,6 +49,7 @@ func TestAccStatusCake_withUpdate(t *testing.T) {
|
||||||
testAccTestCheckExists("statuscake_test.google", &test),
|
testAccTestCheckExists("statuscake_test.google", &test),
|
||||||
resource.TestCheckResourceAttr("statuscake_test.google", "check_rate", "500"),
|
resource.TestCheckResourceAttr("statuscake_test.google", "check_rate", "500"),
|
||||||
resource.TestCheckResourceAttr("statuscake_test.google", "paused", "true"),
|
resource.TestCheckResourceAttr("statuscake_test.google", "paused", "true"),
|
||||||
|
resource.TestCheckResourceAttr("statuscake_test.google", "contact_id", "23456"),
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -101,6 +102,7 @@ resource "statuscake_test" "google" {
|
||||||
website_url = "www.google.com"
|
website_url = "www.google.com"
|
||||||
test_type = "HTTP"
|
test_type = "HTTP"
|
||||||
check_rate = 300
|
check_rate = 300
|
||||||
|
contact_id = 12345
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
|
||||||
|
@ -111,5 +113,6 @@ resource "statuscake_test" "google" {
|
||||||
test_type = "HTTP"
|
test_type = "HTTP"
|
||||||
check_rate = 500
|
check_rate = 500
|
||||||
paused = true
|
paused = true
|
||||||
|
contact_id = 23456
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
|
Loading…
Reference in New Issue