Skip to content

Commit

Permalink
Fix return vals
Browse files Browse the repository at this point in the history
  • Loading branch information
slevenick committed Oct 11, 2019
1 parent f52ded5 commit be5b263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/terraform/resources/resource_bigtable_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func resourceBigtableTableCreate(d *schema.ResourceData, meta interface{}) error

id, err := replaceVars(d, config, "projects/{{project}}/instances/{{instance_id}}/tables/{{name}}")
if err != nil {
return nil, fmt.Errorf("Error constructing id: %s", err)
return fmt.Errorf("Error constructing id: %s", err)
}
d.SetId(id)

Expand Down

0 comments on commit be5b263

Please sign in to comment.