Merge pull request #1509 from hashicorp/f-aws-upstream-network-acl
provider/aws: Convert Network ACL and helper library to upstream aws-sdk-go
This commit is contained in:
commit
86d58089d3
|
@ -4,12 +4,12 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/hashicorp/aws-sdk-go/aws"
|
"github.com/awslabs/aws-sdk-go/aws"
|
||||||
"github.com/hashicorp/aws-sdk-go/gen/ec2"
|
"github.com/awslabs/aws-sdk-go/service/ec2"
|
||||||
)
|
)
|
||||||
|
|
||||||
func expandNetworkAclEntries(configured []interface{}, entryType string) ([]ec2.NetworkACLEntry, error) {
|
func expandNetworkAclEntries(configured []interface{}, entryType string) ([]*ec2.NetworkACLEntry, error) {
|
||||||
entries := make([]ec2.NetworkACLEntry, 0, len(configured))
|
entries := make([]*ec2.NetworkACLEntry, 0, len(configured))
|
||||||
for _, eRaw := range configured {
|
for _, eRaw := range configured {
|
||||||
data := eRaw.(map[string]interface{})
|
data := eRaw.(map[string]interface{})
|
||||||
protocol := data["protocol"].(string)
|
protocol := data["protocol"].(string)
|
||||||
|
@ -18,25 +18,23 @@ func expandNetworkAclEntries(configured []interface{}, entryType string) ([]ec2.
|
||||||
return nil, fmt.Errorf("Invalid Protocol %s for rule %#v", protocol, data)
|
return nil, fmt.Errorf("Invalid Protocol %s for rule %#v", protocol, data)
|
||||||
}
|
}
|
||||||
p := extractProtocolInteger(data["protocol"].(string))
|
p := extractProtocolInteger(data["protocol"].(string))
|
||||||
e := ec2.NetworkACLEntry{
|
e := &ec2.NetworkACLEntry{
|
||||||
Protocol: aws.String(strconv.Itoa(p)),
|
Protocol: aws.String(strconv.Itoa(p)),
|
||||||
PortRange: &ec2.PortRange{
|
PortRange: &ec2.PortRange{
|
||||||
From: aws.Integer(data["from_port"].(int)),
|
From: aws.Long(int64(data["from_port"].(int))),
|
||||||
To: aws.Integer(data["to_port"].(int)),
|
To: aws.Long(int64(data["to_port"].(int))),
|
||||||
},
|
},
|
||||||
Egress: aws.Boolean((entryType == "egress")),
|
Egress: aws.Boolean((entryType == "egress")),
|
||||||
RuleAction: aws.String(data["action"].(string)),
|
RuleAction: aws.String(data["action"].(string)),
|
||||||
RuleNumber: aws.Integer(data["rule_no"].(int)),
|
RuleNumber: aws.Long(int64(data["rule_no"].(int))),
|
||||||
CIDRBlock: aws.String(data["cidr_block"].(string)),
|
CIDRBlock: aws.String(data["cidr_block"].(string)),
|
||||||
}
|
}
|
||||||
entries = append(entries, e)
|
entries = append(entries, e)
|
||||||
}
|
}
|
||||||
|
|
||||||
return entries, nil
|
return entries, nil
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func flattenNetworkAclEntries(list []ec2.NetworkACLEntry) []map[string]interface{} {
|
func flattenNetworkAclEntries(list []*ec2.NetworkACLEntry) []map[string]interface{} {
|
||||||
entries := make([]map[string]interface{}, 0, len(list))
|
entries := make([]map[string]interface{}, 0, len(list))
|
||||||
|
|
||||||
for _, entry := range list {
|
for _, entry := range list {
|
||||||
|
@ -49,6 +47,7 @@ func flattenNetworkAclEntries(list []ec2.NetworkACLEntry) []map[string]interface
|
||||||
"cidr_block": *entry.CIDRBlock,
|
"cidr_block": *entry.CIDRBlock,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
return entries
|
return entries
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,8 +4,8 @@ import (
|
||||||
"reflect"
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/hashicorp/aws-sdk-go/aws"
|
"github.com/awslabs/aws-sdk-go/aws"
|
||||||
"github.com/hashicorp/aws-sdk-go/gen/ec2"
|
"github.com/awslabs/aws-sdk-go/service/ec2"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_expandNetworkACLEntry(t *testing.T) {
|
func Test_expandNetworkACLEntry(t *testing.T) {
|
||||||
|
@ -29,26 +29,26 @@ func Test_expandNetworkACLEntry(t *testing.T) {
|
||||||
}
|
}
|
||||||
expanded, _ := expandNetworkAclEntries(input, "egress")
|
expanded, _ := expandNetworkAclEntries(input, "egress")
|
||||||
|
|
||||||
expected := []ec2.NetworkACLEntry{
|
expected := []*ec2.NetworkACLEntry{
|
||||||
ec2.NetworkACLEntry{
|
&ec2.NetworkACLEntry{
|
||||||
Protocol: aws.String("6"),
|
Protocol: aws.String("6"),
|
||||||
PortRange: &ec2.PortRange{
|
PortRange: &ec2.PortRange{
|
||||||
From: aws.Integer(22),
|
From: aws.Long(22),
|
||||||
To: aws.Integer(22),
|
To: aws.Long(22),
|
||||||
},
|
},
|
||||||
RuleAction: aws.String("deny"),
|
RuleAction: aws.String("deny"),
|
||||||
RuleNumber: aws.Integer(1),
|
RuleNumber: aws.Long(1),
|
||||||
CIDRBlock: aws.String("0.0.0.0/0"),
|
CIDRBlock: aws.String("0.0.0.0/0"),
|
||||||
Egress: aws.Boolean(true),
|
Egress: aws.Boolean(true),
|
||||||
},
|
},
|
||||||
ec2.NetworkACLEntry{
|
&ec2.NetworkACLEntry{
|
||||||
Protocol: aws.String("6"),
|
Protocol: aws.String("6"),
|
||||||
PortRange: &ec2.PortRange{
|
PortRange: &ec2.PortRange{
|
||||||
From: aws.Integer(443),
|
From: aws.Long(443),
|
||||||
To: aws.Integer(443),
|
To: aws.Long(443),
|
||||||
},
|
},
|
||||||
RuleAction: aws.String("deny"),
|
RuleAction: aws.String("deny"),
|
||||||
RuleNumber: aws.Integer(2),
|
RuleNumber: aws.Long(2),
|
||||||
CIDRBlock: aws.String("0.0.0.0/0"),
|
CIDRBlock: aws.String("0.0.0.0/0"),
|
||||||
Egress: aws.Boolean(true),
|
Egress: aws.Boolean(true),
|
||||||
},
|
},
|
||||||
|
@ -65,25 +65,25 @@ func Test_expandNetworkACLEntry(t *testing.T) {
|
||||||
|
|
||||||
func Test_flattenNetworkACLEntry(t *testing.T) {
|
func Test_flattenNetworkACLEntry(t *testing.T) {
|
||||||
|
|
||||||
apiInput := []ec2.NetworkACLEntry{
|
apiInput := []*ec2.NetworkACLEntry{
|
||||||
ec2.NetworkACLEntry{
|
&ec2.NetworkACLEntry{
|
||||||
Protocol: aws.String("tcp"),
|
Protocol: aws.String("tcp"),
|
||||||
PortRange: &ec2.PortRange{
|
PortRange: &ec2.PortRange{
|
||||||
From: aws.Integer(22),
|
From: aws.Long(22),
|
||||||
To: aws.Integer(22),
|
To: aws.Long(22),
|
||||||
},
|
},
|
||||||
RuleAction: aws.String("deny"),
|
RuleAction: aws.String("deny"),
|
||||||
RuleNumber: aws.Integer(1),
|
RuleNumber: aws.Long(1),
|
||||||
CIDRBlock: aws.String("0.0.0.0/0"),
|
CIDRBlock: aws.String("0.0.0.0/0"),
|
||||||
},
|
},
|
||||||
ec2.NetworkACLEntry{
|
&ec2.NetworkACLEntry{
|
||||||
Protocol: aws.String("tcp"),
|
Protocol: aws.String("tcp"),
|
||||||
PortRange: &ec2.PortRange{
|
PortRange: &ec2.PortRange{
|
||||||
From: aws.Integer(443),
|
From: aws.Long(443),
|
||||||
To: aws.Integer(443),
|
To: aws.Long(443),
|
||||||
},
|
},
|
||||||
RuleAction: aws.String("deny"),
|
RuleAction: aws.String("deny"),
|
||||||
RuleNumber: aws.Integer(2),
|
RuleNumber: aws.Long(2),
|
||||||
CIDRBlock: aws.String("0.0.0.0/0"),
|
CIDRBlock: aws.String("0.0.0.0/0"),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -92,26 +92,26 @@ func Test_flattenNetworkACLEntry(t *testing.T) {
|
||||||
expected := []map[string]interface{}{
|
expected := []map[string]interface{}{
|
||||||
map[string]interface{}{
|
map[string]interface{}{
|
||||||
"protocol": "tcp",
|
"protocol": "tcp",
|
||||||
"from_port": 22,
|
"from_port": int64(22),
|
||||||
"to_port": 22,
|
"to_port": int64(22),
|
||||||
"cidr_block": "0.0.0.0/0",
|
"cidr_block": "0.0.0.0/0",
|
||||||
"action": "deny",
|
"action": "deny",
|
||||||
"rule_no": 1,
|
"rule_no": int64(1),
|
||||||
},
|
},
|
||||||
map[string]interface{}{
|
map[string]interface{}{
|
||||||
"protocol": "tcp",
|
"protocol": "tcp",
|
||||||
"from_port": 443,
|
"from_port": int64(443),
|
||||||
"to_port": 443,
|
"to_port": int64(443),
|
||||||
"cidr_block": "0.0.0.0/0",
|
"cidr_block": "0.0.0.0/0",
|
||||||
"action": "deny",
|
"action": "deny",
|
||||||
"rule_no": 2,
|
"rule_no": int64(2),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
if !reflect.DeepEqual(flattened, expected) {
|
if !reflect.DeepEqual(flattened, expected) {
|
||||||
t.Fatalf(
|
t.Fatalf(
|
||||||
"Got:\n\n%#v\n\nExpected:\n\n%#v\n",
|
"Got:\n\n%#v\n\nExpected:\n\n%#v\n",
|
||||||
flattened[0],
|
flattened,
|
||||||
expected)
|
expected)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,8 @@ import (
|
||||||
"log"
|
"log"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/hashicorp/aws-sdk-go/aws"
|
"github.com/awslabs/aws-sdk-go/aws"
|
||||||
"github.com/hashicorp/aws-sdk-go/gen/ec2"
|
"github.com/awslabs/aws-sdk-go/service/ec2"
|
||||||
"github.com/hashicorp/terraform/helper/hashcode"
|
"github.com/hashicorp/terraform/helper/hashcode"
|
||||||
"github.com/hashicorp/terraform/helper/resource"
|
"github.com/hashicorp/terraform/helper/resource"
|
||||||
"github.com/hashicorp/terraform/helper/schema"
|
"github.com/hashicorp/terraform/helper/schema"
|
||||||
|
@ -109,15 +109,15 @@ func resourceAwsNetworkAcl() *schema.Resource {
|
||||||
|
|
||||||
func resourceAwsNetworkAclCreate(d *schema.ResourceData, meta interface{}) error {
|
func resourceAwsNetworkAclCreate(d *schema.ResourceData, meta interface{}) error {
|
||||||
|
|
||||||
ec2conn := meta.(*AWSClient).ec2conn
|
conn := meta.(*AWSClient).ec2SDKconn
|
||||||
|
|
||||||
// Create the Network Acl
|
// Create the Network Acl
|
||||||
createOpts := &ec2.CreateNetworkACLRequest{
|
createOpts := &ec2.CreateNetworkACLInput{
|
||||||
VPCID: aws.String(d.Get("vpc_id").(string)),
|
VPCID: aws.String(d.Get("vpc_id").(string)),
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Printf("[DEBUG] Network Acl create config: %#v", createOpts)
|
log.Printf("[DEBUG] Network Acl create config: %#v", createOpts)
|
||||||
resp, err := ec2conn.CreateNetworkACL(createOpts)
|
resp, err := conn.CreateNetworkACL(createOpts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Error creating network acl: %s", err)
|
return fmt.Errorf("Error creating network acl: %s", err)
|
||||||
}
|
}
|
||||||
|
@ -132,10 +132,10 @@ func resourceAwsNetworkAclCreate(d *schema.ResourceData, meta interface{}) error
|
||||||
}
|
}
|
||||||
|
|
||||||
func resourceAwsNetworkAclRead(d *schema.ResourceData, meta interface{}) error {
|
func resourceAwsNetworkAclRead(d *schema.ResourceData, meta interface{}) error {
|
||||||
ec2conn := meta.(*AWSClient).ec2conn
|
conn := meta.(*AWSClient).ec2SDKconn
|
||||||
|
|
||||||
resp, err := ec2conn.DescribeNetworkACLs(&ec2.DescribeNetworkACLsRequest{
|
resp, err := conn.DescribeNetworkACLs(&ec2.DescribeNetworkACLsInput{
|
||||||
NetworkACLIDs: []string{d.Id()},
|
NetworkACLIDs: []*string{aws.String(d.Id())},
|
||||||
})
|
})
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -145,9 +145,9 @@ func resourceAwsNetworkAclRead(d *schema.ResourceData, meta interface{}) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
networkAcl := &resp.NetworkACLs[0]
|
networkAcl := resp.NetworkACLs[0]
|
||||||
var ingressEntries []ec2.NetworkACLEntry
|
var ingressEntries []*ec2.NetworkACLEntry
|
||||||
var egressEntries []ec2.NetworkACLEntry
|
var egressEntries []*ec2.NetworkACLEntry
|
||||||
|
|
||||||
// separate the ingress and egress rules
|
// separate the ingress and egress rules
|
||||||
for _, e := range networkAcl.Entries {
|
for _, e := range networkAcl.Entries {
|
||||||
|
@ -161,24 +161,24 @@ func resourceAwsNetworkAclRead(d *schema.ResourceData, meta interface{}) error {
|
||||||
d.Set("vpc_id", networkAcl.VPCID)
|
d.Set("vpc_id", networkAcl.VPCID)
|
||||||
d.Set("ingress", ingressEntries)
|
d.Set("ingress", ingressEntries)
|
||||||
d.Set("egress", egressEntries)
|
d.Set("egress", egressEntries)
|
||||||
d.Set("tags", tagsToMap(networkAcl.Tags))
|
d.Set("tags", tagsToMapSDK(networkAcl.Tags))
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func resourceAwsNetworkAclUpdate(d *schema.ResourceData, meta interface{}) error {
|
func resourceAwsNetworkAclUpdate(d *schema.ResourceData, meta interface{}) error {
|
||||||
ec2conn := meta.(*AWSClient).ec2conn
|
conn := meta.(*AWSClient).ec2SDKconn
|
||||||
d.Partial(true)
|
d.Partial(true)
|
||||||
|
|
||||||
if d.HasChange("ingress") {
|
if d.HasChange("ingress") {
|
||||||
err := updateNetworkAclEntries(d, "ingress", ec2conn)
|
err := updateNetworkAclEntries(d, "ingress", conn)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if d.HasChange("egress") {
|
if d.HasChange("egress") {
|
||||||
err := updateNetworkAclEntries(d, "egress", ec2conn)
|
err := updateNetworkAclEntries(d, "egress", conn)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -189,11 +189,11 @@ func resourceAwsNetworkAclUpdate(d *schema.ResourceData, meta interface{}) error
|
||||||
//associate new subnet with the acl.
|
//associate new subnet with the acl.
|
||||||
_, n := d.GetChange("subnet_id")
|
_, n := d.GetChange("subnet_id")
|
||||||
newSubnet := n.(string)
|
newSubnet := n.(string)
|
||||||
association, err := findNetworkAclAssociation(newSubnet, ec2conn)
|
association, err := findNetworkAclAssociation(newSubnet, conn)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Failed to update acl %s with subnet %s: %s", d.Id(), newSubnet, err)
|
return fmt.Errorf("Failed to update acl %s with subnet %s: %s", d.Id(), newSubnet, err)
|
||||||
}
|
}
|
||||||
_, err = ec2conn.ReplaceNetworkACLAssociation(&ec2.ReplaceNetworkACLAssociationRequest{
|
_, err = conn.ReplaceNetworkACLAssociation(&ec2.ReplaceNetworkACLAssociationInput{
|
||||||
AssociationID: association.NetworkACLAssociationID,
|
AssociationID: association.NetworkACLAssociationID,
|
||||||
NetworkACLID: aws.String(d.Id()),
|
NetworkACLID: aws.String(d.Id()),
|
||||||
})
|
})
|
||||||
|
@ -202,7 +202,7 @@ func resourceAwsNetworkAclUpdate(d *schema.ResourceData, meta interface{}) error
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := setTags(ec2conn, d); err != nil {
|
if err := setTagsSDK(conn, d); err != nil {
|
||||||
return err
|
return err
|
||||||
} else {
|
} else {
|
||||||
d.SetPartial("tags")
|
d.SetPartial("tags")
|
||||||
|
@ -212,7 +212,7 @@ func resourceAwsNetworkAclUpdate(d *schema.ResourceData, meta interface{}) error
|
||||||
return resourceAwsNetworkAclRead(d, meta)
|
return resourceAwsNetworkAclRead(d, meta)
|
||||||
}
|
}
|
||||||
|
|
||||||
func updateNetworkAclEntries(d *schema.ResourceData, entryType string, ec2conn *ec2.EC2) error {
|
func updateNetworkAclEntries(d *schema.ResourceData, entryType string, conn *ec2.EC2) error {
|
||||||
|
|
||||||
o, n := d.GetChange(entryType)
|
o, n := d.GetChange(entryType)
|
||||||
|
|
||||||
|
@ -232,7 +232,7 @@ func updateNetworkAclEntries(d *schema.ResourceData, entryType string, ec2conn *
|
||||||
}
|
}
|
||||||
for _, remove := range toBeDeleted {
|
for _, remove := range toBeDeleted {
|
||||||
// Delete old Acl
|
// Delete old Acl
|
||||||
err := ec2conn.DeleteNetworkACLEntry(&ec2.DeleteNetworkACLEntryRequest{
|
_, err := conn.DeleteNetworkACLEntry(&ec2.DeleteNetworkACLEntryInput{
|
||||||
NetworkACLID: aws.String(d.Id()),
|
NetworkACLID: aws.String(d.Id()),
|
||||||
RuleNumber: remove.RuleNumber,
|
RuleNumber: remove.RuleNumber,
|
||||||
Egress: remove.Egress,
|
Egress: remove.Egress,
|
||||||
|
@ -248,7 +248,7 @@ func updateNetworkAclEntries(d *schema.ResourceData, entryType string, ec2conn *
|
||||||
}
|
}
|
||||||
for _, add := range toBeCreated {
|
for _, add := range toBeCreated {
|
||||||
// Add new Acl entry
|
// Add new Acl entry
|
||||||
err := ec2conn.CreateNetworkACLEntry(&ec2.CreateNetworkACLEntryRequest{
|
_, err := conn.CreateNetworkACLEntry(&ec2.CreateNetworkACLEntryInput{
|
||||||
NetworkACLID: aws.String(d.Id()),
|
NetworkACLID: aws.String(d.Id()),
|
||||||
CIDRBlock: add.CIDRBlock,
|
CIDRBlock: add.CIDRBlock,
|
||||||
Egress: add.Egress,
|
Egress: add.Egress,
|
||||||
|
@ -265,11 +265,11 @@ func updateNetworkAclEntries(d *schema.ResourceData, entryType string, ec2conn *
|
||||||
}
|
}
|
||||||
|
|
||||||
func resourceAwsNetworkAclDelete(d *schema.ResourceData, meta interface{}) error {
|
func resourceAwsNetworkAclDelete(d *schema.ResourceData, meta interface{}) error {
|
||||||
ec2conn := meta.(*AWSClient).ec2conn
|
conn := meta.(*AWSClient).ec2SDKconn
|
||||||
|
|
||||||
log.Printf("[INFO] Deleting Network Acl: %s", d.Id())
|
log.Printf("[INFO] Deleting Network Acl: %s", d.Id())
|
||||||
return resource.Retry(5*time.Minute, func() error {
|
return resource.Retry(5*time.Minute, func() error {
|
||||||
err := ec2conn.DeleteNetworkACL(&ec2.DeleteNetworkACLRequest{
|
_, err := conn.DeleteNetworkACL(&ec2.DeleteNetworkACLInput{
|
||||||
NetworkACLID: aws.String(d.Id()),
|
NetworkACLID: aws.String(d.Id()),
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -280,15 +280,15 @@ func resourceAwsNetworkAclDelete(d *schema.ResourceData, meta interface{}) error
|
||||||
case "DependencyViolation":
|
case "DependencyViolation":
|
||||||
// In case of dependency violation, we remove the association between subnet and network acl.
|
// In case of dependency violation, we remove the association between subnet and network acl.
|
||||||
// This means the subnet is attached to default acl of vpc.
|
// This means the subnet is attached to default acl of vpc.
|
||||||
association, err := findNetworkAclAssociation(d.Get("subnet_id").(string), ec2conn)
|
association, err := findNetworkAclAssociation(d.Get("subnet_id").(string), conn)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Dependency violation: Cannot delete acl %s: %s", d.Id(), err)
|
return fmt.Errorf("Dependency violation: Cannot delete acl %s: %s", d.Id(), err)
|
||||||
}
|
}
|
||||||
defaultAcl, err := getDefaultNetworkAcl(d.Get("vpc_id").(string), ec2conn)
|
defaultAcl, err := getDefaultNetworkAcl(d.Get("vpc_id").(string), conn)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Dependency violation: Cannot delete acl %s: %s", d.Id(), err)
|
return fmt.Errorf("Dependency violation: Cannot delete acl %s: %s", d.Id(), err)
|
||||||
}
|
}
|
||||||
_, err = ec2conn.ReplaceNetworkACLAssociation(&ec2.ReplaceNetworkACLAssociationRequest{
|
_, err = conn.ReplaceNetworkACLAssociation(&ec2.ReplaceNetworkACLAssociationInput{
|
||||||
AssociationID: association.NetworkACLAssociationID,
|
AssociationID: association.NetworkACLAssociationID,
|
||||||
NetworkACLID: defaultAcl.NetworkACLID,
|
NetworkACLID: defaultAcl.NetworkACLID,
|
||||||
})
|
})
|
||||||
|
@ -320,17 +320,17 @@ func resourceAwsNetworkAclEntryHash(v interface{}) int {
|
||||||
return hashcode.String(buf.String())
|
return hashcode.String(buf.String())
|
||||||
}
|
}
|
||||||
|
|
||||||
func getDefaultNetworkAcl(vpc_id string, ec2conn *ec2.EC2) (defaultAcl *ec2.NetworkACL, err error) {
|
func getDefaultNetworkAcl(vpc_id string, conn *ec2.EC2) (defaultAcl *ec2.NetworkACL, err error) {
|
||||||
resp, err := ec2conn.DescribeNetworkACLs(&ec2.DescribeNetworkACLsRequest{
|
resp, err := conn.DescribeNetworkACLs(&ec2.DescribeNetworkACLsInput{
|
||||||
NetworkACLIDs: []string{},
|
NetworkACLIDs: []*string{},
|
||||||
Filters: []ec2.Filter{
|
Filters: []*ec2.Filter{
|
||||||
ec2.Filter{
|
&ec2.Filter{
|
||||||
Name: aws.String("default"),
|
Name: aws.String("default"),
|
||||||
Values: []string{"true"},
|
Values: []*string{aws.String("true")},
|
||||||
},
|
},
|
||||||
ec2.Filter{
|
&ec2.Filter{
|
||||||
Name: aws.String("vpc-id"),
|
Name: aws.String("vpc-id"),
|
||||||
Values: []string{vpc_id},
|
Values: []*string{aws.String(vpc_id)},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
@ -338,16 +338,16 @@ func getDefaultNetworkAcl(vpc_id string, ec2conn *ec2.EC2) (defaultAcl *ec2.Netw
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return &resp.NetworkACLs[0], nil
|
return resp.NetworkACLs[0], nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func findNetworkAclAssociation(subnetId string, ec2conn *ec2.EC2) (networkAclAssociation *ec2.NetworkACLAssociation, err error) {
|
func findNetworkAclAssociation(subnetId string, conn *ec2.EC2) (networkAclAssociation *ec2.NetworkACLAssociation, err error) {
|
||||||
resp, err := ec2conn.DescribeNetworkACLs(&ec2.DescribeNetworkACLsRequest{
|
resp, err := conn.DescribeNetworkACLs(&ec2.DescribeNetworkACLsInput{
|
||||||
NetworkACLIDs: []string{},
|
NetworkACLIDs: []*string{},
|
||||||
Filters: []ec2.Filter{
|
Filters: []*ec2.Filter{
|
||||||
ec2.Filter{
|
&ec2.Filter{
|
||||||
Name: aws.String("association.subnet-id"),
|
Name: aws.String("association.subnet-id"),
|
||||||
Values: []string{subnetId},
|
Values: []*string{aws.String(subnetId)},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
@ -357,7 +357,7 @@ func findNetworkAclAssociation(subnetId string, ec2conn *ec2.EC2) (networkAclAss
|
||||||
}
|
}
|
||||||
for _, association := range resp.NetworkACLs[0].Associations {
|
for _, association := range resp.NetworkACLs[0].Associations {
|
||||||
if *association.SubnetID == subnetId {
|
if *association.SubnetID == subnetId {
|
||||||
return &association, nil
|
return association, nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nil, fmt.Errorf("could not find association for subnet %s ", subnetId)
|
return nil, fmt.Errorf("could not find association for subnet %s ", subnetId)
|
||||||
|
|
|
@ -12,7 +12,7 @@ import (
|
||||||
// "github.com/hashicorp/terraform/helper/schema"
|
// "github.com/hashicorp/terraform/helper/schema"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestAccAWSNetworkAclsWithEgressAndIngressRules(t *testing.T) {
|
func TestAccAWSNetworkAcl_EgressAndIngressRules(t *testing.T) {
|
||||||
var networkAcl ec2.NetworkACL
|
var networkAcl ec2.NetworkACL
|
||||||
|
|
||||||
resource.Test(t, resource.TestCase{
|
resource.Test(t, resource.TestCase{
|
||||||
|
@ -54,7 +54,7 @@ func TestAccAWSNetworkAclsWithEgressAndIngressRules(t *testing.T) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestAccAWSNetworkAclsOnlyIngressRules(t *testing.T) {
|
func TestAccAWSNetworkAcl_OnlyIngressRules(t *testing.T) {
|
||||||
var networkAcl ec2.NetworkACL
|
var networkAcl ec2.NetworkACL
|
||||||
|
|
||||||
resource.Test(t, resource.TestCase{
|
resource.Test(t, resource.TestCase{
|
||||||
|
@ -85,7 +85,7 @@ func TestAccAWSNetworkAclsOnlyIngressRules(t *testing.T) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestAccAWSNetworkAclsOnlyIngressRulesChange(t *testing.T) {
|
func TestAccAWSNetworkAcl_OnlyIngressRulesChange(t *testing.T) {
|
||||||
var networkAcl ec2.NetworkACL
|
var networkAcl ec2.NetworkACL
|
||||||
|
|
||||||
resource.Test(t, resource.TestCase{
|
resource.Test(t, resource.TestCase{
|
||||||
|
@ -139,7 +139,7 @@ func TestAccAWSNetworkAclsOnlyIngressRulesChange(t *testing.T) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestAccAWSNetworkAclsOnlyEgressRules(t *testing.T) {
|
func TestAccAWSNetworkAcl_OnlyEgressRules(t *testing.T) {
|
||||||
var networkAcl ec2.NetworkACL
|
var networkAcl ec2.NetworkACL
|
||||||
|
|
||||||
resource.Test(t, resource.TestCase{
|
resource.Test(t, resource.TestCase{
|
||||||
|
|
Loading…
Reference in New Issue