We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d27a4ac commit f9082ebCopy full SHA for f9082eb
internal/acctest/acctest.go
@@ -7,6 +7,7 @@ import (
7
"testing"
8
"time"
9
10
+ "github.com/google/uuid"
11
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12
"github.com/scaleway/terraform-provider-scaleway/v2/internal/meta"
13
"github.com/scaleway/terraform-provider-scaleway/v2/internal/provider"
@@ -42,6 +43,8 @@ func NewTestTools(t *testing.T) *TestTools {
42
43
ProviderSchema: nil,
44
TerraformVersion: "terraform-tests",
45
HTTPClient: httpClient,
46
+ // avoid "Error: could not detect project id"
47
+ ForceProjectID: uuid.New().String(),
48
})
49
require.NoError(t, err)
50
0 commit comments