From cd1e70faab7711d7ad45d65ec0df2852c81e4dd2 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 19 Feb 2015 09:54:16 -0800 Subject: [PATCH] providers/aws: acceptance test was too strict --- builtin/providers/aws/resource_aws_eip_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/builtin/providers/aws/resource_aws_eip_test.go b/builtin/providers/aws/resource_aws_eip_test.go index 0a72af4f4..d99801db9 100644 --- a/builtin/providers/aws/resource_aws_eip_test.go +++ b/builtin/providers/aws/resource_aws_eip_test.go @@ -93,10 +93,6 @@ func testAccCheckAWSEIPAttributes(conf *ec2.Address) resource.TestCheckFunc { return fmt.Errorf("empty public_ip") } - if conf.PrivateIpAddress != "" { - return fmt.Errorf("should not have private_ip for non-vpc") - } - return nil } }