Use computed fingerprint

This commit is contained in:
Radek Simko 2015-09-08 11:57:31 +01:00
parent a36f893d7e
commit 567c299a84
1 changed files with 0 additions and 2 deletions

View File

@ -8,7 +8,6 @@ import (
"time"
"github.com/hashicorp/terraform/helper/hashcode"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/helper/schema"
"google.golang.org/api/compute/v1"
"google.golang.org/api/googleapi"
@ -132,7 +131,6 @@ func resourceComputeBackendServiceCreate(d *schema.ResourceData, meta interface{
service := compute.BackendService{
Name: d.Get("name").(string),
Fingerprint: resource.PrefixedUniqueId("tf-gce-bs-"),
HealthChecks: healthChecks,
}