From cbeb42453ff62dc71c158ebede9a61e106f2f98a Mon Sep 17 00:00:00 2001 From: Uzair Ali <72073401+uzaxirr@users.noreply.github.com> Date: Wed, 9 Oct 2024 15:06:11 +0530 Subject: [PATCH] Add default vol type --- civo/volume/resource_volume.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/civo/volume/resource_volume.go b/civo/volume/resource_volume.go index fe6e7b2f..f8600a96 100644 --- a/civo/volume/resource_volume.go +++ b/civo/volume/resource_volume.go @@ -92,7 +92,7 @@ func resourceVolumeCreate(ctx context.Context, d *schema.ResourceData, m interfa volume, err := apiClient.NewVolume(config) if err != nil { - return diag.Errorf("[ERR] failed to create a new volume: %s", err) + return diag.Errorf("[ERR] failed to create a new volume: %s region: %s", err, apiClient.Region) } d.SetId(volume.ID)