From 0751910a2d3f5dcf8588251451e6043bdc258cc3 Mon Sep 17 00:00:00 2001 From: Raphael Randschau Date: Fri, 22 Mar 2019 21:32:21 -0700 Subject: [PATCH] fix/scaleway_server: ignore state_detail in import MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit this changes if the server being imported is booting, so we can safely ignore it§ --- scaleway/import_server_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scaleway/import_server_test.go b/scaleway/import_server_test.go index 2b1d60e302..4e00209e68 100644 --- a/scaleway/import_server_test.go +++ b/scaleway/import_server_test.go @@ -22,6 +22,9 @@ func TestAccScalewayServer_importBasic(t *testing.T) { ResourceName: resourceName, ImportState: true, ImportStateVerify: true, + ImportStateVerifyIgnore: []string{ + "state_detail", + }, }, }, })