# Ping Tests

To setup a test to check a host responds to pings:

resource "synthetigo_test" "this" {
    name     = "Some test name"
    regions  = ["uk"]
    schedule = "* * * * *"
    
    step {
        name = "Ping"
        kind = "ping"
        options = {
            host    = "synthetigo.dev"
            timeout = "100ms"
        }
    }
}