diff --git a/builtin/providers/google/provider_test.go b/builtin/providers/google/provider_test.go index 9139f5fce..976b657a6 100644 --- a/builtin/providers/google/provider_test.go +++ b/builtin/providers/google/provider_test.go @@ -36,4 +36,8 @@ func testAccPreCheck(t *testing.T) { if v := os.Getenv("GOOGLE_CLIENT_FILE"); v == "" { t.Fatal("GOOGLE_CLIENT_FILE must be set for acceptance tests") } + + if v := os.Getenv("GOOGLE_PROJECT"); v == "" { + t.Fatal("GOOGLE_PROJECT must be set for acceptance tests") + } }