Merge pull request #1635 from hashicorp/b-net-acls-blank-id

providers/aws: network_acl, remove blank filter
This commit is contained in:
Paul Hinze 2015-04-23 07:32:04 -05:00
commit 10b73f95ae
1 changed files with 0 additions and 1 deletions

View File

@ -342,7 +342,6 @@ func getDefaultNetworkAcl(vpc_id string, conn *ec2.EC2) (defaultAcl *ec2.Network
func findNetworkAclAssociation(subnetId string, conn *ec2.EC2) (networkAclAssociation *ec2.NetworkACLAssociation, err error) {
resp, err := conn.DescribeNetworkACLs(&ec2.DescribeNetworkACLsInput{
NetworkACLIDs: []*string{},
Filters: []*ec2.Filter{
&ec2.Filter{
Name: aws.String("association.subnet-id"),