mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 15:13:56 -06:00
170 lines
4.8 KiB
Go
170 lines
4.8 KiB
Go
package aws
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
)
|
|
|
|
func resourceAwsMainRouteTableAssociation() *schema.Resource {
|
|
return &schema.Resource{
|
|
Create: resourceAwsMainRouteTableAssociationCreate,
|
|
Read: resourceAwsMainRouteTableAssociationRead,
|
|
Update: resourceAwsMainRouteTableAssociationUpdate,
|
|
Delete: resourceAwsMainRouteTableAssociationDelete,
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
"vpc_id": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Required: true,
|
|
},
|
|
|
|
"route_table_id": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Required: true,
|
|
},
|
|
|
|
// We use this field to record the main route table that is automatically
|
|
// created when the VPC is created. We need this to be able to "destroy"
|
|
// our main route table association, which we do by returning this route
|
|
// table to its original place as the Main Route Table for the VPC.
|
|
"original_route_table_id": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Computed: true,
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func resourceAwsMainRouteTableAssociationCreate(d *schema.ResourceData, meta interface{}) error {
|
|
conn := meta.(*AWSClient).ec2conn
|
|
vpcId := d.Get("vpc_id").(string)
|
|
routeTableId := d.Get("route_table_id").(string)
|
|
|
|
log.Printf("[INFO] Creating main route table association: %s => %s", vpcId, routeTableId)
|
|
|
|
mainAssociation, err := findMainRouteTableAssociation(conn, vpcId)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
resp, err := conn.ReplaceRouteTableAssociation(&ec2.ReplaceRouteTableAssociationInput{
|
|
AssociationId: mainAssociation.RouteTableAssociationId,
|
|
RouteTableId: aws.String(routeTableId),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
d.Set("original_route_table_id", mainAssociation.RouteTableId)
|
|
d.SetId(*resp.NewAssociationId)
|
|
log.Printf("[INFO] New main route table association ID: %s", d.Id())
|
|
|
|
return nil
|
|
}
|
|
|
|
func resourceAwsMainRouteTableAssociationRead(d *schema.ResourceData, meta interface{}) error {
|
|
conn := meta.(*AWSClient).ec2conn
|
|
|
|
mainAssociation, err := findMainRouteTableAssociation(
|
|
conn,
|
|
d.Get("vpc_id").(string))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if mainAssociation == nil || *mainAssociation.RouteTableAssociationId != d.Id() {
|
|
// It seems it doesn't exist anymore, so clear the ID
|
|
d.SetId("")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Update is almost exactly like Create, except we want to retain the
|
|
// original_route_table_id - this needs to stay recorded as the AWS-created
|
|
// table from VPC creation.
|
|
func resourceAwsMainRouteTableAssociationUpdate(d *schema.ResourceData, meta interface{}) error {
|
|
conn := meta.(*AWSClient).ec2conn
|
|
vpcId := d.Get("vpc_id").(string)
|
|
routeTableId := d.Get("route_table_id").(string)
|
|
|
|
log.Printf("[INFO] Updating main route table association: %s => %s", vpcId, routeTableId)
|
|
|
|
resp, err := conn.ReplaceRouteTableAssociation(&ec2.ReplaceRouteTableAssociationInput{
|
|
AssociationId: aws.String(d.Id()),
|
|
RouteTableId: aws.String(routeTableId),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
d.SetId(*resp.NewAssociationId)
|
|
log.Printf("[INFO] New main route table association ID: %s", d.Id())
|
|
|
|
return nil
|
|
}
|
|
|
|
func resourceAwsMainRouteTableAssociationDelete(d *schema.ResourceData, meta interface{}) error {
|
|
conn := meta.(*AWSClient).ec2conn
|
|
vpcId := d.Get("vpc_id").(string)
|
|
originalRouteTableId := d.Get("original_route_table_id").(string)
|
|
|
|
log.Printf("[INFO] Deleting main route table association by resetting Main Route Table for VPC: %s to its original Route Table: %s",
|
|
vpcId,
|
|
originalRouteTableId)
|
|
|
|
resp, err := conn.ReplaceRouteTableAssociation(&ec2.ReplaceRouteTableAssociationInput{
|
|
AssociationId: aws.String(d.Id()),
|
|
RouteTableId: aws.String(originalRouteTableId),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Printf("[INFO] Resulting Association ID: %s", *resp.NewAssociationId)
|
|
|
|
return nil
|
|
}
|
|
|
|
func findMainRouteTableAssociation(conn *ec2.EC2, vpcId string) (*ec2.RouteTableAssociation, error) {
|
|
mainRouteTable, err := findMainRouteTable(conn, vpcId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if mainRouteTable == nil {
|
|
return nil, nil
|
|
}
|
|
|
|
for _, a := range mainRouteTable.Associations {
|
|
if *a.Main {
|
|
return a, nil
|
|
}
|
|
}
|
|
return nil, fmt.Errorf("Could not find main routing table association for VPC: %s", vpcId)
|
|
}
|
|
|
|
func findMainRouteTable(conn *ec2.EC2, vpcId string) (*ec2.RouteTable, error) {
|
|
mainFilter := &ec2.Filter{
|
|
Name: aws.String("association.main"),
|
|
Values: []*string{aws.String("true")},
|
|
}
|
|
vpcFilter := &ec2.Filter{
|
|
Name: aws.String("vpc-id"),
|
|
Values: []*string{aws.String(vpcId)},
|
|
}
|
|
routeResp, err := conn.DescribeRouteTables(&ec2.DescribeRouteTablesInput{
|
|
Filters: []*ec2.Filter{mainFilter, vpcFilter},
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
} else if len(routeResp.RouteTables) != 1 {
|
|
return nil, nil
|
|
}
|
|
|
|
return routeResp.RouteTables[0], nil
|
|
}
|