2014-11-26 14:44:02 +01:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
2014-12-01 09:49:05 +01:00
|
|
|
"bytes"
|
2014-11-26 14:44:02 +01:00
|
|
|
"fmt"
|
|
|
|
"log"
|
2015-05-06 15:22:18 +02:00
|
|
|
"strconv"
|
2014-12-03 08:34:28 +01:00
|
|
|
"time"
|
2014-11-26 14:44:02 +01:00
|
|
|
|
2015-04-13 18:14:21 +02:00
|
|
|
"github.com/awslabs/aws-sdk-go/aws"
|
|
|
|
"github.com/awslabs/aws-sdk-go/service/ec2"
|
2014-11-30 12:40:54 +01:00
|
|
|
"github.com/hashicorp/terraform/helper/hashcode"
|
2014-12-03 08:34:28 +01:00
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
2014-12-01 09:49:05 +01:00
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
2014-11-26 14:44:02 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func resourceAwsNetworkAcl() *schema.Resource {
|
|
|
|
|
|
|
|
return &schema.Resource{
|
2014-12-01 09:49:05 +01:00
|
|
|
Create: resourceAwsNetworkAclCreate,
|
|
|
|
Read: resourceAwsNetworkAclRead,
|
|
|
|
Delete: resourceAwsNetworkAclDelete,
|
|
|
|
Update: resourceAwsNetworkAclUpdate,
|
2014-11-26 14:44:02 +01:00
|
|
|
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"vpc_id": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
2014-12-03 08:53:18 +01:00
|
|
|
Required: true,
|
2014-11-26 14:44:02 +01:00
|
|
|
ForceNew: true,
|
2014-12-03 08:53:18 +01:00
|
|
|
Computed: false,
|
2014-11-26 14:44:02 +01:00
|
|
|
},
|
2014-11-30 12:40:54 +01:00
|
|
|
"subnet_id": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
|
|
|
ForceNew: true,
|
2014-12-03 08:53:18 +01:00
|
|
|
Computed: false,
|
2014-11-30 12:40:54 +01:00
|
|
|
},
|
|
|
|
"ingress": &schema.Schema{
|
|
|
|
Type: schema.TypeSet,
|
|
|
|
Required: false,
|
|
|
|
Optional: true,
|
|
|
|
Elem: &schema.Resource{
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"from_port": &schema.Schema{
|
|
|
|
Type: schema.TypeInt,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"to_port": &schema.Schema{
|
|
|
|
Type: schema.TypeInt,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"rule_no": &schema.Schema{
|
|
|
|
Type: schema.TypeInt,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"action": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"protocol": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"cidr_block": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Set: resourceAwsNetworkAclEntryHash,
|
|
|
|
},
|
|
|
|
"egress": &schema.Schema{
|
|
|
|
Type: schema.TypeSet,
|
|
|
|
Required: false,
|
|
|
|
Optional: true,
|
|
|
|
Elem: &schema.Resource{
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"from_port": &schema.Schema{
|
|
|
|
Type: schema.TypeInt,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"to_port": &schema.Schema{
|
|
|
|
Type: schema.TypeInt,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"rule_no": &schema.Schema{
|
|
|
|
Type: schema.TypeInt,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"action": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"protocol": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"cidr_block": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Set: resourceAwsNetworkAclEntryHash,
|
2014-12-01 09:49:05 +01:00
|
|
|
},
|
2014-12-10 11:59:00 +01:00
|
|
|
"tags": tagsSchema(),
|
2014-11-26 14:44:02 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsNetworkAclCreate(d *schema.ResourceData, meta interface{}) error {
|
2014-12-01 09:49:05 +01:00
|
|
|
|
2015-04-16 22:05:55 +02:00
|
|
|
conn := meta.(*AWSClient).ec2conn
|
2014-11-26 14:44:02 +01:00
|
|
|
|
|
|
|
// Create the Network Acl
|
2015-04-13 18:14:21 +02:00
|
|
|
createOpts := &ec2.CreateNetworkACLInput{
|
2015-03-11 21:01:07 +01:00
|
|
|
VPCID: aws.String(d.Get("vpc_id").(string)),
|
2014-11-26 14:44:02 +01:00
|
|
|
}
|
2014-12-03 08:34:28 +01:00
|
|
|
|
2014-11-26 14:44:02 +01:00
|
|
|
log.Printf("[DEBUG] Network Acl create config: %#v", createOpts)
|
2015-04-13 18:14:21 +02:00
|
|
|
resp, err := conn.CreateNetworkACL(createOpts)
|
2014-11-26 14:44:02 +01:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error creating network acl: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the ID and store it
|
2015-03-11 21:01:07 +01:00
|
|
|
networkAcl := resp.NetworkACL
|
|
|
|
d.SetId(*networkAcl.NetworkACLID)
|
|
|
|
log.Printf("[INFO] Network Acl ID: %s", *networkAcl.NetworkACLID)
|
2014-11-26 14:44:02 +01:00
|
|
|
|
2014-12-03 08:34:28 +01:00
|
|
|
// Update rules and subnet association once acl is created
|
2014-11-30 12:40:54 +01:00
|
|
|
return resourceAwsNetworkAclUpdate(d, meta)
|
2014-11-26 14:44:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsNetworkAclRead(d *schema.ResourceData, meta interface{}) error {
|
2015-04-16 22:05:55 +02:00
|
|
|
conn := meta.(*AWSClient).ec2conn
|
2014-11-26 14:44:02 +01:00
|
|
|
|
2015-04-13 18:14:21 +02:00
|
|
|
resp, err := conn.DescribeNetworkACLs(&ec2.DescribeNetworkACLsInput{
|
|
|
|
NetworkACLIDs: []*string{aws.String(d.Id())},
|
2015-03-11 21:01:07 +01:00
|
|
|
})
|
2014-11-26 14:44:02 +01:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if resp == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-04-13 18:14:21 +02:00
|
|
|
networkAcl := resp.NetworkACLs[0]
|
|
|
|
var ingressEntries []*ec2.NetworkACLEntry
|
|
|
|
var egressEntries []*ec2.NetworkACLEntry
|
2014-11-26 14:44:02 +01:00
|
|
|
|
2014-12-03 08:34:28 +01:00
|
|
|
// separate the ingress and egress rules
|
2015-03-11 21:01:07 +01:00
|
|
|
for _, e := range networkAcl.Entries {
|
2015-05-06 15:10:44 +02:00
|
|
|
// Skip the default rules added by AWS. They can be neither
|
|
|
|
// configured or deleted by users.
|
|
|
|
if *e.RuleNumber == 32767 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2015-03-11 21:01:07 +01:00
|
|
|
if *e.Egress == true {
|
2014-11-30 12:40:54 +01:00
|
|
|
egressEntries = append(egressEntries, e)
|
2014-12-01 09:49:05 +01:00
|
|
|
} else {
|
2014-11-30 12:40:54 +01:00
|
|
|
ingressEntries = append(ingressEntries, e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-11 21:01:07 +01:00
|
|
|
d.Set("vpc_id", networkAcl.VPCID)
|
2015-04-13 18:14:21 +02:00
|
|
|
d.Set("tags", tagsToMapSDK(networkAcl.Tags))
|
2014-11-30 12:40:54 +01:00
|
|
|
|
2015-05-05 20:44:05 +02:00
|
|
|
if err := d.Set("ingress", networkAclEntriesToMapList(ingressEntries)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := d.Set("egress", networkAclEntriesToMapList(egressEntries)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-11-26 14:44:02 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsNetworkAclUpdate(d *schema.ResourceData, meta interface{}) error {
|
2015-04-16 22:05:55 +02:00
|
|
|
conn := meta.(*AWSClient).ec2conn
|
2014-11-30 12:40:54 +01:00
|
|
|
d.Partial(true)
|
|
|
|
|
2014-12-01 09:49:05 +01:00
|
|
|
if d.HasChange("ingress") {
|
2015-04-13 18:14:21 +02:00
|
|
|
err := updateNetworkAclEntries(d, "ingress", conn)
|
2014-12-01 09:49:05 +01:00
|
|
|
if err != nil {
|
2014-11-30 12:40:54 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-01 09:49:05 +01:00
|
|
|
if d.HasChange("egress") {
|
2015-04-13 18:14:21 +02:00
|
|
|
err := updateNetworkAclEntries(d, "egress", conn)
|
2014-12-01 09:49:05 +01:00
|
|
|
if err != nil {
|
2014-11-30 12:40:54 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-03 08:53:18 +01:00
|
|
|
if d.HasChange("subnet_id") {
|
|
|
|
//associate new subnet with the acl.
|
|
|
|
_, n := d.GetChange("subnet_id")
|
|
|
|
newSubnet := n.(string)
|
2015-04-13 18:14:21 +02:00
|
|
|
association, err := findNetworkAclAssociation(newSubnet, conn)
|
2014-12-03 08:53:18 +01:00
|
|
|
if err != nil {
|
2014-12-17 12:37:42 +01:00
|
|
|
return fmt.Errorf("Failed to update acl %s with subnet %s: %s", d.Id(), newSubnet, err)
|
2014-12-03 08:34:28 +01:00
|
|
|
}
|
2015-04-13 18:14:21 +02:00
|
|
|
_, err = conn.ReplaceNetworkACLAssociation(&ec2.ReplaceNetworkACLAssociationInput{
|
2015-03-11 21:01:07 +01:00
|
|
|
AssociationID: association.NetworkACLAssociationID,
|
|
|
|
NetworkACLID: aws.String(d.Id()),
|
|
|
|
})
|
2014-12-03 08:34:28 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-13 18:14:21 +02:00
|
|
|
if err := setTagsSDK(conn, d); err != nil {
|
2014-12-10 11:59:00 +01:00
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
d.SetPartial("tags")
|
|
|
|
}
|
|
|
|
|
2014-11-30 12:40:54 +01:00
|
|
|
d.Partial(false)
|
2014-11-26 14:44:02 +01:00
|
|
|
return resourceAwsNetworkAclRead(d, meta)
|
2014-11-30 12:40:54 +01:00
|
|
|
}
|
|
|
|
|
2015-04-13 18:14:21 +02:00
|
|
|
func updateNetworkAclEntries(d *schema.ResourceData, entryType string, conn *ec2.EC2) error {
|
2014-11-30 12:40:54 +01:00
|
|
|
|
|
|
|
o, n := d.GetChange(entryType)
|
|
|
|
|
|
|
|
if o == nil {
|
|
|
|
o = new(schema.Set)
|
|
|
|
}
|
|
|
|
if n == nil {
|
|
|
|
n = new(schema.Set)
|
|
|
|
}
|
|
|
|
|
|
|
|
os := o.(*schema.Set)
|
|
|
|
ns := n.(*schema.Set)
|
2014-12-17 12:37:42 +01:00
|
|
|
|
2014-12-08 11:48:39 +01:00
|
|
|
toBeDeleted, err := expandNetworkAclEntries(os.Difference(ns).List(), entryType)
|
2014-12-17 12:37:42 +01:00
|
|
|
if err != nil {
|
2014-12-08 11:48:39 +01:00
|
|
|
return err
|
|
|
|
}
|
2014-11-30 12:40:54 +01:00
|
|
|
for _, remove := range toBeDeleted {
|
2015-05-06 15:10:44 +02:00
|
|
|
|
|
|
|
// AWS includes default rules with all network ACLs that can be
|
|
|
|
// neither modified nor destroyed. They have a custom rule
|
|
|
|
// number that is out of bounds for any other rule. If we
|
|
|
|
// encounter it, just continue. There's no work to be done.
|
|
|
|
if *remove.RuleNumber == 32767 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-12-03 08:34:28 +01:00
|
|
|
// Delete old Acl
|
2015-04-13 18:14:21 +02:00
|
|
|
_, err := conn.DeleteNetworkACLEntry(&ec2.DeleteNetworkACLEntryInput{
|
2015-03-11 21:01:07 +01:00
|
|
|
NetworkACLID: aws.String(d.Id()),
|
|
|
|
RuleNumber: remove.RuleNumber,
|
|
|
|
Egress: remove.Egress,
|
|
|
|
})
|
2014-12-01 09:49:05 +01:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error deleting %s entry: %s", entryType, err)
|
|
|
|
}
|
2014-11-30 12:40:54 +01:00
|
|
|
}
|
|
|
|
|
2014-12-08 11:48:39 +01:00
|
|
|
toBeCreated, err := expandNetworkAclEntries(ns.Difference(os).List(), entryType)
|
2014-12-17 12:37:42 +01:00
|
|
|
if err != nil {
|
2014-12-08 11:48:39 +01:00
|
|
|
return err
|
|
|
|
}
|
2014-11-30 12:40:54 +01:00
|
|
|
for _, add := range toBeCreated {
|
2015-05-06 15:14:33 +02:00
|
|
|
// Protocol -1 rules don't store ports in AWS. Thus, they'll always
|
|
|
|
// hash differently when being read out of the API. Force the user
|
|
|
|
// to set from_port and to_port to 0 for these rules, to keep the
|
|
|
|
// hashing consistent.
|
|
|
|
if *add.Protocol == "-1" {
|
|
|
|
to := *add.PortRange.To
|
|
|
|
from := *add.PortRange.From
|
|
|
|
expected := &expectedPortPair{
|
|
|
|
to_port: 0,
|
|
|
|
from_port: 0,
|
|
|
|
}
|
|
|
|
if ok := validatePorts(to, from, *expected); !ok {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"to_port (%d) and from_port (%d) must both be 0 to use the the 'all' \"-1\" protocol!",
|
|
|
|
to, from)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-06 15:16:46 +02:00
|
|
|
// AWS mutates the CIDR block into a network implied by the IP and
|
|
|
|
// mask provided. This results in hashing inconsistencies between
|
|
|
|
// the local config file and the state returned by the API. Error
|
|
|
|
// if the user provides a CIDR block with an inappropriate mask
|
|
|
|
if err := validateCIDRBlock(*add.CIDRBlock); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-12-03 08:34:28 +01:00
|
|
|
// Add new Acl entry
|
2015-05-06 15:16:46 +02:00
|
|
|
_, connErr := conn.CreateNetworkACLEntry(&ec2.CreateNetworkACLEntryInput{
|
2015-03-11 21:01:07 +01:00
|
|
|
NetworkACLID: aws.String(d.Id()),
|
|
|
|
CIDRBlock: add.CIDRBlock,
|
|
|
|
Egress: add.Egress,
|
|
|
|
PortRange: add.PortRange,
|
|
|
|
Protocol: add.Protocol,
|
|
|
|
RuleAction: add.RuleAction,
|
|
|
|
RuleNumber: add.RuleNumber,
|
|
|
|
})
|
2015-05-06 15:16:46 +02:00
|
|
|
if connErr != nil {
|
2014-12-01 09:49:05 +01:00
|
|
|
return fmt.Errorf("Error creating %s entry: %s", entryType, err)
|
|
|
|
}
|
2014-11-30 12:40:54 +01:00
|
|
|
}
|
|
|
|
return nil
|
2014-11-26 14:44:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsNetworkAclDelete(d *schema.ResourceData, meta interface{}) error {
|
2015-04-16 22:05:55 +02:00
|
|
|
conn := meta.(*AWSClient).ec2conn
|
2014-11-26 14:44:02 +01:00
|
|
|
|
|
|
|
log.Printf("[INFO] Deleting Network Acl: %s", d.Id())
|
2014-12-03 08:34:28 +01:00
|
|
|
return resource.Retry(5*time.Minute, func() error {
|
2015-04-13 18:14:21 +02:00
|
|
|
_, err := conn.DeleteNetworkACL(&ec2.DeleteNetworkACLInput{
|
2015-03-11 21:01:07 +01:00
|
|
|
NetworkACLID: aws.String(d.Id()),
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ec2err := err.(aws.APIError)
|
2014-12-03 08:34:28 +01:00
|
|
|
switch ec2err.Code {
|
2014-12-03 08:53:18 +01:00
|
|
|
case "InvalidNetworkAclID.NotFound":
|
|
|
|
return nil
|
|
|
|
case "DependencyViolation":
|
|
|
|
// 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.
|
2015-04-13 18:14:21 +02:00
|
|
|
association, err := findNetworkAclAssociation(d.Get("subnet_id").(string), conn)
|
2014-12-03 08:53:18 +01:00
|
|
|
if err != nil {
|
2015-05-06 18:44:09 +02:00
|
|
|
return resource.RetryError{Err: fmt.Errorf("Dependency violation: Cannot delete acl %s: %s", d.Id(), err)}
|
2014-12-03 08:53:18 +01:00
|
|
|
}
|
2015-04-13 18:14:21 +02:00
|
|
|
defaultAcl, err := getDefaultNetworkAcl(d.Get("vpc_id").(string), conn)
|
2014-12-03 08:53:18 +01:00
|
|
|
if err != nil {
|
2015-05-06 18:44:09 +02:00
|
|
|
return resource.RetryError{Err: fmt.Errorf("Dependency violation: Cannot delete acl %s: %s", d.Id(), err)}
|
2014-12-03 08:53:18 +01:00
|
|
|
}
|
2015-04-13 18:14:21 +02:00
|
|
|
_, err = conn.ReplaceNetworkACLAssociation(&ec2.ReplaceNetworkACLAssociationInput{
|
2015-03-11 21:01:07 +01:00
|
|
|
AssociationID: association.NetworkACLAssociationID,
|
|
|
|
NetworkACLID: defaultAcl.NetworkACLID,
|
|
|
|
})
|
2015-02-18 19:26:59 +01:00
|
|
|
return resource.RetryError{Err: err}
|
2014-12-03 08:53:18 +01:00
|
|
|
default:
|
|
|
|
// Any other error, we want to quit the retry loop immediately
|
2015-02-18 19:26:59 +01:00
|
|
|
return resource.RetryError{Err: err}
|
2014-12-03 08:34:28 +01:00
|
|
|
}
|
2014-11-26 14:44:02 +01:00
|
|
|
}
|
2014-12-03 08:53:18 +01:00
|
|
|
log.Printf("[Info] Deleted network ACL %s successfully", d.Id())
|
2014-12-03 08:34:28 +01:00
|
|
|
return nil
|
|
|
|
})
|
2014-11-26 14:44:02 +01:00
|
|
|
}
|
2014-11-30 12:40:54 +01:00
|
|
|
|
|
|
|
func resourceAwsNetworkAclEntryHash(v interface{}) int {
|
|
|
|
var buf bytes.Buffer
|
|
|
|
m := v.(map[string]interface{})
|
|
|
|
buf.WriteString(fmt.Sprintf("%d-", m["from_port"].(int)))
|
2014-12-17 12:37:42 +01:00
|
|
|
buf.WriteString(fmt.Sprintf("%d-", m["to_port"].(int)))
|
2014-11-30 12:40:54 +01:00
|
|
|
buf.WriteString(fmt.Sprintf("%d-", m["rule_no"].(int)))
|
|
|
|
buf.WriteString(fmt.Sprintf("%s-", m["action"].(string)))
|
2015-05-06 15:22:18 +02:00
|
|
|
|
|
|
|
// The AWS network ACL API only speaks protocol numbers, and that's
|
|
|
|
// all we store. Never hash a protocol name.
|
|
|
|
protocol := m["protocol"].(string)
|
|
|
|
if _, err := strconv.Atoi(m["protocol"].(string)); err != nil {
|
|
|
|
// We're a protocol name. Look up the number.
|
|
|
|
buf.WriteString(fmt.Sprintf("%d-", protocolIntegers()[protocol]))
|
|
|
|
} else {
|
|
|
|
// We're a protocol number. Pass the value through.
|
|
|
|
buf.WriteString(fmt.Sprintf("%s-", protocol))
|
|
|
|
}
|
|
|
|
|
2014-11-30 12:40:54 +01:00
|
|
|
buf.WriteString(fmt.Sprintf("%s-", m["cidr_block"].(string)))
|
|
|
|
|
|
|
|
if v, ok := m["ssl_certificate_id"]; ok {
|
|
|
|
buf.WriteString(fmt.Sprintf("%s-", v.(string)))
|
|
|
|
}
|
|
|
|
|
|
|
|
return hashcode.String(buf.String())
|
|
|
|
}
|
2014-12-03 08:34:28 +01:00
|
|
|
|
2015-04-13 18:14:21 +02:00
|
|
|
func getDefaultNetworkAcl(vpc_id string, conn *ec2.EC2) (defaultAcl *ec2.NetworkACL, err error) {
|
|
|
|
resp, err := conn.DescribeNetworkACLs(&ec2.DescribeNetworkACLsInput{
|
|
|
|
Filters: []*ec2.Filter{
|
|
|
|
&ec2.Filter{
|
2015-03-11 21:01:07 +01:00
|
|
|
Name: aws.String("default"),
|
2015-04-13 18:14:21 +02:00
|
|
|
Values: []*string{aws.String("true")},
|
2015-03-11 21:01:07 +01:00
|
|
|
},
|
2015-04-13 18:14:21 +02:00
|
|
|
&ec2.Filter{
|
2015-03-11 21:01:07 +01:00
|
|
|
Name: aws.String("vpc-id"),
|
2015-04-13 18:14:21 +02:00
|
|
|
Values: []*string{aws.String(vpc_id)},
|
2015-03-11 21:01:07 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2014-12-03 08:34:28 +01:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-04-13 18:14:21 +02:00
|
|
|
return resp.NetworkACLs[0], nil
|
2014-12-03 08:53:18 +01:00
|
|
|
}
|
2014-12-03 08:34:28 +01:00
|
|
|
|
2015-04-13 18:14:21 +02:00
|
|
|
func findNetworkAclAssociation(subnetId string, conn *ec2.EC2) (networkAclAssociation *ec2.NetworkACLAssociation, err error) {
|
|
|
|
resp, err := conn.DescribeNetworkACLs(&ec2.DescribeNetworkACLsInput{
|
|
|
|
Filters: []*ec2.Filter{
|
|
|
|
&ec2.Filter{
|
2015-03-11 21:01:07 +01:00
|
|
|
Name: aws.String("association.subnet-id"),
|
2015-04-13 18:14:21 +02:00
|
|
|
Values: []*string{aws.String(subnetId)},
|
2015-03-11 21:01:07 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2014-12-03 08:34:28 +01:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-04-22 12:39:01 +02:00
|
|
|
if resp.NetworkACLs != nil && len(resp.NetworkACLs) > 0 {
|
|
|
|
for _, association := range resp.NetworkACLs[0].Associations {
|
|
|
|
if *association.SubnetID == subnetId {
|
|
|
|
return association, nil
|
|
|
|
}
|
2014-12-03 08:53:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("could not find association for subnet %s ", subnetId)
|
2014-12-03 08:34:28 +01:00
|
|
|
}
|
2015-05-05 20:44:05 +02:00
|
|
|
|
|
|
|
// networkAclEntriesToMapList turns ingress/egress rules read from AWS into a list
|
|
|
|
// of maps.
|
|
|
|
func networkAclEntriesToMapList(networkAcls []*ec2.NetworkACLEntry) []map[string]interface{} {
|
|
|
|
result := make([]map[string]interface{}, 0, len(networkAcls))
|
|
|
|
for _, entry := range networkAcls {
|
|
|
|
acl := make(map[string]interface{})
|
|
|
|
acl["rule_no"] = *entry.RuleNumber
|
|
|
|
acl["action"] = *entry.RuleAction
|
|
|
|
acl["cidr_block"] = *entry.CIDRBlock
|
|
|
|
|
2015-05-06 15:22:18 +02:00
|
|
|
// The AWS network ACL API only speaks protocol numbers, and
|
|
|
|
// that's all we record.
|
|
|
|
if _, err := strconv.Atoi(*entry.Protocol); err != nil {
|
|
|
|
// We're a protocol name. Look up the number.
|
|
|
|
acl["protocol"] = protocolIntegers()[*entry.Protocol]
|
|
|
|
} else {
|
|
|
|
// We're a protocol number. Pass through.
|
|
|
|
acl["protocol"] = *entry.Protocol
|
|
|
|
}
|
|
|
|
|
|
|
|
acl["protocol"] = *entry.Protocol
|
2015-05-05 20:44:05 +02:00
|
|
|
if entry.PortRange != nil {
|
|
|
|
acl["from_port"] = *entry.PortRange.From
|
|
|
|
acl["to_port"] = *entry.PortRange.To
|
|
|
|
}
|
|
|
|
|
|
|
|
result = append(result, acl)
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|