2015-05-06 18:01:19 +02:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
2015-05-08 17:59:31 +02:00
|
|
|
"fmt"
|
2015-05-06 18:01:19 +02:00
|
|
|
"log"
|
2015-05-08 17:59:31 +02:00
|
|
|
"strings"
|
|
|
|
"time"
|
2015-05-06 18:01:19 +02:00
|
|
|
|
2015-05-08 17:59:31 +02:00
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
2015-05-06 18:01:19 +02:00
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
|
|
|
2015-06-03 20:36:57 +02:00
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/awserr"
|
|
|
|
"github.com/aws/aws-sdk-go/service/route53"
|
2015-05-06 18:01:19 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func resourceAwsRoute53ZoneAssociation() *schema.Resource {
|
|
|
|
return &schema.Resource{
|
|
|
|
Create: resourceAwsRoute53ZoneAssociationCreate,
|
|
|
|
Read: resourceAwsRoute53ZoneAssociationRead,
|
|
|
|
Update: resourceAwsRoute53ZoneAssociationUpdate,
|
|
|
|
Delete: resourceAwsRoute53ZoneAssociationDelete,
|
|
|
|
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"zone_id": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"vpc_id": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
|
2015-05-08 09:16:24 +02:00
|
|
|
"vpc_region": &schema.Schema{
|
2015-05-06 18:01:19 +02:00
|
|
|
Type: schema.TypeString,
|
2015-05-08 09:16:24 +02:00
|
|
|
Optional: true,
|
2015-05-08 21:47:42 +02:00
|
|
|
Computed: true,
|
2015-05-06 18:01:19 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsRoute53ZoneAssociationCreate(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
r53 := meta.(*AWSClient).r53conn
|
|
|
|
|
|
|
|
req := &route53.AssociateVPCWithHostedZoneInput{
|
|
|
|
HostedZoneID: aws.String(d.Get("zone_id").(string)),
|
|
|
|
VPC: &route53.VPC{
|
|
|
|
VPCID: aws.String(d.Get("vpc_id").(string)),
|
2015-05-08 09:16:24 +02:00
|
|
|
VPCRegion: aws.String(meta.(*AWSClient).region),
|
2015-05-06 18:01:19 +02:00
|
|
|
},
|
|
|
|
Comment: aws.String("Managed by Terraform"),
|
|
|
|
}
|
2015-05-08 14:40:53 +02:00
|
|
|
if w := d.Get("vpc_region"); w != "" {
|
2015-05-08 09:16:24 +02:00
|
|
|
req.VPC.VPCRegion = aws.String(w.(string))
|
|
|
|
}
|
2015-05-06 18:01:19 +02:00
|
|
|
|
2015-05-08 21:47:42 +02:00
|
|
|
log.Printf("[DEBUG] Associating Route53 Private Zone %s with VPC %s with region %s", *req.HostedZoneID, *req.VPC.VPCID, *req.VPC.VPCRegion)
|
2015-05-20 13:21:23 +02:00
|
|
|
var err error
|
2015-05-06 18:01:19 +02:00
|
|
|
resp, err := r53.AssociateVPCWithHostedZone(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store association id
|
2015-05-08 17:59:31 +02:00
|
|
|
d.SetId(fmt.Sprintf("%s:%s", *req.HostedZoneID, *req.VPC.VPCID))
|
|
|
|
d.Set("vpc_region", req.VPC.VPCRegion)
|
|
|
|
|
|
|
|
// Wait until we are done initializing
|
|
|
|
wait := resource.StateChangeConf{
|
|
|
|
Delay: 30 * time.Second,
|
|
|
|
Pending: []string{"PENDING"},
|
|
|
|
Target: "INSYNC",
|
|
|
|
Timeout: 10 * time.Minute,
|
|
|
|
MinTimeout: 2 * time.Second,
|
|
|
|
Refresh: func() (result interface{}, state string, err error) {
|
|
|
|
changeRequest := &route53.GetChangeInput{
|
|
|
|
ID: aws.String(cleanChangeID(*resp.ChangeInfo.ID)),
|
|
|
|
}
|
|
|
|
return resourceAwsGoRoute53Wait(r53, changeRequest)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
_, err = wait.WaitForState()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-05-06 18:01:19 +02:00
|
|
|
|
|
|
|
return resourceAwsRoute53ZoneAssociationUpdate(d, meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsRoute53ZoneAssociationRead(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
r53 := meta.(*AWSClient).r53conn
|
2015-05-08 17:59:31 +02:00
|
|
|
zone_id, vpc_id := resourceAwsRoute53ZoneAssociationParseId(d.Id())
|
|
|
|
zone, err := r53.GetHostedZone(&route53.GetHostedZoneInput{ID: aws.String(zone_id)})
|
2015-05-06 18:01:19 +02:00
|
|
|
if err != nil {
|
|
|
|
// Handle a deleted zone
|
2015-05-20 13:21:23 +02:00
|
|
|
if r53err, ok := err.(awserr.Error); ok && r53err.Code() == "NoSuchHostedZone" {
|
2015-05-06 18:01:19 +02:00
|
|
|
d.SetId("")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-05-08 17:59:31 +02:00
|
|
|
for _, vpc := range zone.VPCs {
|
|
|
|
if vpc_id == *vpc.VPCID {
|
2015-05-06 18:01:19 +02:00
|
|
|
// association is there, return
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// no association found
|
|
|
|
d.SetId("")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsRoute53ZoneAssociationUpdate(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
return resourceAwsRoute53ZoneAssociationRead(d, meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsRoute53ZoneAssociationDelete(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
r53 := meta.(*AWSClient).r53conn
|
2015-05-08 17:59:31 +02:00
|
|
|
zone_id, vpc_id := resourceAwsRoute53ZoneAssociationParseId(d.Id())
|
|
|
|
log.Printf("[DEBUG] Deleting Route53 Private Zone (%s) association (VPC: %s)",
|
|
|
|
zone_id, vpc_id)
|
2015-05-06 18:01:19 +02:00
|
|
|
|
|
|
|
req := &route53.DisassociateVPCFromHostedZoneInput{
|
2015-05-08 17:59:31 +02:00
|
|
|
HostedZoneID: aws.String(zone_id),
|
2015-05-06 18:01:19 +02:00
|
|
|
VPC: &route53.VPC{
|
2015-05-08 17:59:31 +02:00
|
|
|
VPCID: aws.String(vpc_id),
|
|
|
|
VPCRegion: aws.String(d.Get("vpc_region").(string)),
|
2015-05-06 18:01:19 +02:00
|
|
|
},
|
|
|
|
Comment: aws.String("Managed by Terraform"),
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := r53.DisassociateVPCFromHostedZone(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2015-05-08 17:59:31 +02:00
|
|
|
|
|
|
|
func resourceAwsRoute53ZoneAssociationParseId(id string) (zone_id, vpc_id string) {
|
|
|
|
parts := strings.SplitN(id, ":", 2)
|
|
|
|
zone_id = parts[0]
|
|
|
|
vpc_id = parts[1]
|
|
|
|
return
|
|
|
|
}
|