From 9e120cad7832f8d0f565a0de8f7607f0eab5f7b2 Mon Sep 17 00:00:00 2001 From: Jonathan Petitcolas Date: Fri, 12 Apr 2024 11:53:22 -0700 Subject: [PATCH] Fix cluster import error message --- qovery/resource_cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qovery/resource_cluster.go b/qovery/resource_cluster.go index fbc15480..5a1bb3f3 100644 --- a/qovery/resource_cluster.go +++ b/qovery/resource_cluster.go @@ -451,7 +451,7 @@ func (r clusterResource) ImportState(ctx context.Context, req resource.ImportSta if len(idParts) != 2 || idParts[0] == "" || idParts[1] == "" { resp.Diagnostics.AddError( "Unexpected Import Identifier", - fmt.Sprintf("Expected import identifier with format: cluster_id,organization_id. Got: %q", req.ID), + fmt.Sprintf("Expected import identifier with format: organization_id,cluster_id. Got: %q", req.ID), ) return }