provider/google: Made instances a computed property of 'google_compute_target_pool'

This commit is contained in:
Noah Webb 2016-08-18 10:53:43 -04:00
parent 0c5ec16c30
commit 0eb18737cb

View File

@ -55,6 +55,7 @@ func resourceComputeTargetPool() *schema.Resource {
"instances": &schema.Schema{
Type: schema.TypeList,
Optional: true,
Computed: true,
ForceNew: false,
Elem: &schema.Schema{Type: schema.TypeString},
},
@ -396,6 +397,8 @@ func resourceComputeTargetPoolRead(d *schema.ResourceData, meta interface{}) err
d.Set("health_checks", tpool.HealthChecks)
if tpool.Instances != nil {
d.Set("instances", convertInstancesFromUrls(tpool.Instances))
} else {
d.Set("instances", nil)
}
d.Set("name", tpool.Name)
d.Set("region", regionUrl[len(regionUrl)-1])