Merge branch 'tape-tv-statuscake-contactgroup'
This commit is contained in:
commit
acf9aab692
|
@ -53,6 +53,10 @@ func resourceStatusCakeTest() *schema.Resource {
|
|||
Type: schema.TypeInt,
|
||||
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 {
|
||||
test.Timeout = v.(int)
|
||||
}
|
||||
if v, ok := d.GetOk("contact_id"); ok {
|
||||
test.ContactID = v.(int)
|
||||
}
|
||||
return test
|
||||
}
|
||||
|
|
|
@ -49,6 +49,7 @@ func TestAccStatusCake_withUpdate(t *testing.T) {
|
|||
testAccTestCheckExists("statuscake_test.google", &test),
|
||||
resource.TestCheckResourceAttr("statuscake_test.google", "check_rate", "500"),
|
||||
resource.TestCheckResourceAttr("statuscake_test.google", "paused", "true"),
|
||||
resource.TestCheckResourceAttr("statuscake_test.google", "contact_id", "23456"),
|
||||
),
|
||||
},
|
||||
},
|
||||
|
@ -97,19 +98,21 @@ func testAccTestCheckDestroy(test *statuscake.Test) resource.TestCheckFunc {
|
|||
|
||||
const testAccTestConfig_basic = `
|
||||
resource "statuscake_test" "google" {
|
||||
website_name = "google.com"
|
||||
website_url = "www.google.com"
|
||||
test_type = "HTTP"
|
||||
check_rate = 300
|
||||
website_name = "google.com"
|
||||
website_url = "www.google.com"
|
||||
test_type = "HTTP"
|
||||
check_rate = 300
|
||||
contact_id = 12345
|
||||
}
|
||||
`
|
||||
|
||||
const testAccTestConfig_update = `
|
||||
resource "statuscake_test" "google" {
|
||||
website_name = "google.com"
|
||||
website_url = "www.google.com"
|
||||
test_type = "HTTP"
|
||||
check_rate = 500
|
||||
paused = true
|
||||
website_name = "google.com"
|
||||
website_url = "www.google.com"
|
||||
test_type = "HTTP"
|
||||
check_rate = 500
|
||||
paused = true
|
||||
contact_id = 23456
|
||||
}
|
||||
`
|
||||
|
|
|
@ -31,6 +31,7 @@ The following arguments are supported:
|
|||
* `test_type` - (Required) The type of Test. Either HTTP or TCP
|
||||
* `paused` - (Optional) Whether or not the test is paused. Defaults to false.
|
||||
* `timeout` - (Optional) The timeout of the test in seconds.
|
||||
* `contact_id` - (Optional) The ID of the contact group to associate with the test.
|
||||
|
||||
|
||||
## Attributes Reference
|
||||
|
|
Loading…
Reference in New Issue