provider/google: Support Import of 'google_resource_http_health_check'
This commit is contained in:
parent
3fc119923e
commit
3fb6287027
|
@ -0,0 +1,28 @@
|
||||||
|
package google
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/hashicorp/terraform/helper/resource"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestAccComputeHttpHealthCheck_importBasic(t *testing.T) {
|
||||||
|
resourceName := "google_compute_http_health_check.foobar"
|
||||||
|
|
||||||
|
resource.Test(t, resource.TestCase{
|
||||||
|
PreCheck: func() { testAccPreCheck(t) },
|
||||||
|
Providers: testAccProviders,
|
||||||
|
CheckDestroy: testAccCheckComputeHttpHealthCheckDestroy,
|
||||||
|
Steps: []resource.TestStep{
|
||||||
|
resource.TestStep{
|
||||||
|
Config: testAccComputeHttpHealthCheck_basic,
|
||||||
|
},
|
||||||
|
|
||||||
|
resource.TestStep{
|
||||||
|
ResourceName: resourceName,
|
||||||
|
ImportState: true,
|
||||||
|
ImportStateVerify: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
|
@ -15,6 +15,9 @@ func resourceComputeHttpHealthCheck() *schema.Resource {
|
||||||
Read: resourceComputeHttpHealthCheckRead,
|
Read: resourceComputeHttpHealthCheckRead,
|
||||||
Delete: resourceComputeHttpHealthCheckDelete,
|
Delete: resourceComputeHttpHealthCheckDelete,
|
||||||
Update: resourceComputeHttpHealthCheckUpdate,
|
Update: resourceComputeHttpHealthCheckUpdate,
|
||||||
|
Importer: &schema.ResourceImporter{
|
||||||
|
State: schema.ImportStatePassthrough,
|
||||||
|
},
|
||||||
|
|
||||||
Schema: map[string]*schema.Schema{
|
Schema: map[string]*schema.Schema{
|
||||||
"name": &schema.Schema{
|
"name": &schema.Schema{
|
||||||
|
@ -55,6 +58,7 @@ func resourceComputeHttpHealthCheck() *schema.Resource {
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
ForceNew: true,
|
ForceNew: true,
|
||||||
|
Computed: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
"request_path": &schema.Schema{
|
"request_path": &schema.Schema{
|
||||||
|
@ -220,11 +224,14 @@ func resourceComputeHttpHealthCheckRead(d *schema.ResourceData, meta interface{}
|
||||||
d.Set("host", hchk.Host)
|
d.Set("host", hchk.Host)
|
||||||
d.Set("request_path", hchk.RequestPath)
|
d.Set("request_path", hchk.RequestPath)
|
||||||
d.Set("check_interval_sec", hchk.CheckIntervalSec)
|
d.Set("check_interval_sec", hchk.CheckIntervalSec)
|
||||||
d.Set("health_threshold", hchk.HealthyThreshold)
|
d.Set("healthy_threshold", hchk.HealthyThreshold)
|
||||||
d.Set("port", hchk.Port)
|
d.Set("port", hchk.Port)
|
||||||
d.Set("timeout_sec", hchk.TimeoutSec)
|
d.Set("timeout_sec", hchk.TimeoutSec)
|
||||||
d.Set("unhealthy_threshold", hchk.UnhealthyThreshold)
|
d.Set("unhealthy_threshold", hchk.UnhealthyThreshold)
|
||||||
d.Set("self_link", hchk.SelfLink)
|
d.Set("self_link", hchk.SelfLink)
|
||||||
|
d.Set("name", hchk.Name)
|
||||||
|
d.Set("description", hchk.Description)
|
||||||
|
d.Set("project", project)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue