// ---------------------------------------------------------------------------- // // *** AUTO GENERATED CODE *** AUTO GENERATED CODE *** // // ---------------------------------------------------------------------------- // // This file is automatically generated by Magic Modules and manual // changes will be clobbered when the file is regenerated. // // Please read more about how to change this file in // .github/CONTRIBUTING.md. // // ---------------------------------------------------------------------------- package google import ( "fmt" "testing" "github.com/hashicorp/terraform/helper/acctest" "github.com/hashicorp/terraform/helper/resource" ) func TestAccComputeHttpsHealthCheck_httpsHealthCheckBasicExample(t *testing.T) { t.Parallel() resource.Test(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) }, Providers: testAccProviders, CheckDestroy: testAccCheckComputeHttpsHealthCheckDestroy, Steps: []resource.TestStep{ { Config: testAccComputeHttpsHealthCheck_httpsHealthCheckBasicExample(acctest.RandString(10)), }, { ResourceName: "google_compute_https_health_check.default", ImportState: true, ImportStateVerify: true, }, }, }) } func testAccComputeHttpsHealthCheck_httpsHealthCheckBasicExample(val string) string { return fmt.Sprintf(` resource "google_compute_https_health_check" "default" { name = "authentication-health-check-%s" request_path = "/health_check" timeout_sec = 1 check_interval_sec = 1 } `, val, ) }