diff --git a/resource_compute_http_health_check_test.go b/resource_compute_http_health_check_test.go index 1797e983..ac98540d 100644 --- a/resource_compute_http_health_check_test.go +++ b/resource_compute_http_health_check_test.go @@ -72,14 +72,14 @@ func testAccCheckComputeHttpHealthCheckExists(n string) resource.TestCheckFunc { const testAccComputeHttpHealthCheck_basic = ` resource "google_compute_http_health_check" "foobar" { - check_interval_sec = 3 + check_interval_sec = 3 description = "Resource created for Terraform acceptance testing" healthy_threshold = 3 host = "foobar" - name = "terraform-test" + name = "terraform-test" port = "80" - request_path = "/health_check" - timeout_sec = 2 + request_path = "/health_check" + timeout_sec = 2 unhealthy_threshold = 3 } `