mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-26 13:03:36 -04:00
Cleanup vet errors
This commit is contained in:
@@ -97,7 +97,7 @@ func testAccCheckImageListEntryDestroy(s *terraform.State) error {
|
||||
|
||||
name, version, err := parseOPCImageListEntryID(rs.Primary.ID)
|
||||
if err != nil {
|
||||
return fmt.Errorf("Error parsing the Image List ID: $+v", err)
|
||||
return fmt.Errorf("Error parsing the Image List ID: %+v", err)
|
||||
}
|
||||
|
||||
input := compute.GetImageListEntryInput{
|
||||
|
||||
@@ -405,7 +405,7 @@ func resourceInstanceCreate(d *schema.ResourceData, meta interface{}) error {
|
||||
return fmt.Errorf("Error creating instance %s: %s", input.Name, err)
|
||||
}
|
||||
|
||||
log.Printf("[DEBUG] Created instance %s: %#v", result.ID)
|
||||
log.Printf("[DEBUG] Created instance %s: %#v", input.Name, result.ID)
|
||||
|
||||
d.SetId(result.ID)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user