0
0
llucycodes42
The code configures a Google Compute HTTP Health Check instance. The instance's name is "example-name", and the request path is "/health_check". The instance's timeout is 1 second, and the check interval is 1 second.
Shortcut: tf_google_compute_http_health_check
resource "google_compute_http_health_check" "${MyResource}" {
name = "example-name"
request_path = "/health_check"
timeout_sec = 1
check_interval_sec = 1
}