2014-07-11 02:17:01 +02:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
|
2015-04-11 00:09:36 +02:00
|
|
|
"github.com/awslabs/aws-sdk-go/aws"
|
|
|
|
"github.com/awslabs/aws-sdk-go/service/ec2"
|
2014-11-21 17:58:34 +01:00
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
2014-07-11 02:17:01 +02:00
|
|
|
)
|
|
|
|
|
2014-11-21 17:58:34 +01:00
|
|
|
func resourceAwsRouteTableAssociation() *schema.Resource {
|
|
|
|
return &schema.Resource{
|
|
|
|
Create: resourceAwsRouteTableAssociationCreate,
|
|
|
|
Read: resourceAwsRouteTableAssociationRead,
|
|
|
|
Update: resourceAwsRouteTableAssociationUpdate,
|
|
|
|
Delete: resourceAwsRouteTableAssociationDelete,
|
|
|
|
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"subnet_id": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"route_table_id": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsRouteTableAssociationCreate(d *schema.ResourceData, meta interface{}) error {
|
2015-04-16 22:05:55 +02:00
|
|
|
conn := meta.(*AWSClient).ec2conn
|
2014-07-11 02:17:01 +02:00
|
|
|
|
|
|
|
log.Printf(
|
|
|
|
"[INFO] Creating route table association: %s => %s",
|
2014-11-21 17:58:34 +01:00
|
|
|
d.Get("subnet_id").(string),
|
|
|
|
d.Get("route_table_id").(string))
|
|
|
|
|
2015-04-11 00:09:36 +02:00
|
|
|
resp, err := conn.AssociateRouteTable(&ec2.AssociateRouteTableInput{
|
2015-03-09 23:11:30 +01:00
|
|
|
RouteTableID: aws.String(d.Get("route_table_id").(string)),
|
|
|
|
SubnetID: aws.String(d.Get("subnet_id").(string)),
|
|
|
|
})
|
2014-11-21 17:58:34 +01:00
|
|
|
|
2014-07-11 02:17:01 +02:00
|
|
|
if err != nil {
|
2014-11-21 17:58:34 +01:00
|
|
|
return err
|
2014-07-11 02:17:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set the ID and return
|
2015-03-09 23:11:30 +01:00
|
|
|
d.SetId(*resp.AssociationID)
|
2014-11-21 17:58:34 +01:00
|
|
|
log.Printf("[INFO] Association ID: %s", d.Id())
|
2014-07-11 02:17:01 +02:00
|
|
|
|
2014-11-21 17:58:34 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsRouteTableAssociationRead(d *schema.ResourceData, meta interface{}) error {
|
2015-04-16 22:05:55 +02:00
|
|
|
conn := meta.(*AWSClient).ec2conn
|
2014-11-21 17:58:34 +01:00
|
|
|
|
|
|
|
// Get the routing table that this association belongs to
|
|
|
|
rtRaw, _, err := resourceAwsRouteTableStateRefreshFunc(
|
2015-04-11 00:09:36 +02:00
|
|
|
conn, d.Get("route_table_id").(string))()
|
2014-11-21 17:58:34 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if rtRaw == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
rt := rtRaw.(*ec2.RouteTable)
|
|
|
|
|
|
|
|
// Inspect that the association exists
|
|
|
|
found := false
|
|
|
|
for _, a := range rt.Associations {
|
2015-03-09 23:11:30 +01:00
|
|
|
if *a.RouteTableAssociationID == d.Id() {
|
2014-11-21 17:58:34 +01:00
|
|
|
found = true
|
2015-03-09 23:11:30 +01:00
|
|
|
d.Set("subnet_id", *a.SubnetID)
|
2014-11-21 17:58:34 +01:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
// It seems it doesn't exist anymore, so clear the ID
|
|
|
|
d.SetId("")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2014-07-11 02:17:01 +02:00
|
|
|
}
|
|
|
|
|
2014-11-21 17:58:34 +01:00
|
|
|
func resourceAwsRouteTableAssociationUpdate(d *schema.ResourceData, meta interface{}) error {
|
2015-04-16 22:05:55 +02:00
|
|
|
conn := meta.(*AWSClient).ec2conn
|
2014-07-11 02:17:01 +02:00
|
|
|
|
|
|
|
log.Printf(
|
2014-11-21 17:58:34 +01:00
|
|
|
"[INFO] Creating route table association: %s => %s",
|
|
|
|
d.Get("subnet_id").(string),
|
|
|
|
d.Get("route_table_id").(string))
|
|
|
|
|
2015-04-11 00:09:36 +02:00
|
|
|
req := &ec2.ReplaceRouteTableAssociationInput{
|
2015-03-09 23:11:30 +01:00
|
|
|
AssociationID: aws.String(d.Id()),
|
|
|
|
RouteTableID: aws.String(d.Get("route_table_id").(string)),
|
|
|
|
}
|
2015-04-11 00:09:36 +02:00
|
|
|
resp, err := conn.ReplaceRouteTableAssociation(req)
|
2014-11-21 17:58:34 +01:00
|
|
|
|
2014-07-11 02:17:01 +02:00
|
|
|
if err != nil {
|
2015-03-09 23:11:30 +01:00
|
|
|
ec2err, ok := err.(aws.APIError)
|
2014-07-11 22:10:09 +02:00
|
|
|
if ok && ec2err.Code == "InvalidAssociationID.NotFound" {
|
|
|
|
// Not found, so just create a new one
|
2014-11-21 17:58:34 +01:00
|
|
|
return resourceAwsRouteTableAssociationCreate(d, meta)
|
2014-07-11 22:10:09 +02:00
|
|
|
}
|
|
|
|
|
2014-11-21 17:58:34 +01:00
|
|
|
return err
|
2014-07-11 02:17:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update the ID
|
2015-03-09 23:11:30 +01:00
|
|
|
d.SetId(*resp.NewAssociationID)
|
2014-11-21 17:58:34 +01:00
|
|
|
log.Printf("[INFO] Association ID: %s", d.Id())
|
2014-07-11 02:17:01 +02:00
|
|
|
|
2014-11-21 17:58:34 +01:00
|
|
|
return nil
|
2014-07-11 02:17:01 +02:00
|
|
|
}
|
|
|
|
|
2014-11-21 17:58:34 +01:00
|
|
|
func resourceAwsRouteTableAssociationDelete(d *schema.ResourceData, meta interface{}) error {
|
2015-04-16 22:05:55 +02:00
|
|
|
conn := meta.(*AWSClient).ec2conn
|
2014-07-11 02:17:01 +02:00
|
|
|
|
2014-11-21 17:58:34 +01:00
|
|
|
log.Printf("[INFO] Deleting route table association: %s", d.Id())
|
2015-04-11 00:09:36 +02:00
|
|
|
_, err := conn.DisassociateRouteTable(&ec2.DisassociateRouteTableInput{
|
2015-03-09 23:11:30 +01:00
|
|
|
AssociationID: aws.String(d.Id()),
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ec2err, ok := err.(aws.APIError)
|
2014-07-11 02:17:01 +02:00
|
|
|
if ok && ec2err.Code == "InvalidAssociationID.NotFound" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Errorf("Error deleting route table association: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|