diff --git a/builtin/providers/aws/provider_test.go b/builtin/providers/aws/provider_test.go index 4df3ce727..fee6cb0e5 100644 --- a/builtin/providers/aws/provider_test.go +++ b/builtin/providers/aws/provider_test.go @@ -46,4 +46,8 @@ func testAccPreCheck(t *testing.T) { log.Println("[INFO] Test: Using us-west-2 as test region") os.Setenv("AWS_DEFAULT_REGION", "us-west-2") } + err := testAccProvider.Configure(terraform.NewResourceConfig(nil)) + if err != nil { + t.Fatal(err) + } }