diff --git a/test/e2e/framework/providers/aws/aws.go b/test/e2e/framework/providers/aws/aws.go index dd34f84fbfa..e5291115c3d 100644 --- a/test/e2e/framework/providers/aws/aws.go +++ b/test/e2e/framework/providers/aws/aws.go @@ -38,7 +38,7 @@ func init() { func newProvider() (framework.ProviderInterface, error) { if framework.TestContext.CloudConfig.Zone == "" { - return nil, fmt.Errorf("gce-zone must be specified for AWS") + framework.Logf("Warning: gce-zone not specified! Some tests that use the AWS SDK may select the wrong region and fail.") } return &Provider{}, nil }