terraform-provider-google/google/resource_compute_health_check_generated_test.go
2018-09-24 15:35:43 -07:00

60 lines
1.5 KiB
Go

// ----------------------------------------------------------------------------
//
// *** 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 TestAccComputeHealthCheck_healthCheckBasicExample(t *testing.T) {
t.Parallel()
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: testAccCheckComputeHealthCheckDestroy,
Steps: []resource.TestStep{
{
Config: testAccComputeHealthCheck_healthCheckBasicExample(acctest.RandString(10)),
},
{
ResourceName: "google_compute_health_check.internal-health-check",
ImportState: true,
ImportStateVerify: true,
},
},
})
}
func testAccComputeHealthCheck_healthCheckBasicExample(val string) string {
return fmt.Sprintf(`
resource "google_compute_health_check" "internal-health-check" {
name = "internal-service-health-check-%s"
timeout_sec = 1
check_interval_sec = 1
tcp_health_check {
port = "80"
}
}
`, val,
)
}