-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1526 from PeopleNet/route53_private_hosted_zone
AWS/Route53Zone - create private hosted zone associated with VPC.
- Loading branch information
Showing
9 changed files
with
674 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
147 changes: 147 additions & 0 deletions
147
builtin/providers/aws/resource_aws_route53_zone_association.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
package aws | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"strings" | ||
"time" | ||
|
||
"github.com/hashicorp/terraform/helper/resource" | ||
"github.com/hashicorp/terraform/helper/schema" | ||
|
||
"github.com/awslabs/aws-sdk-go/aws" | ||
"github.com/awslabs/aws-sdk-go/service/route53" | ||
) | ||
|
||
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, | ||
}, | ||
|
||
"vpc_region": &schema.Schema{ | ||
Type: schema.TypeString, | ||
Optional: true, | ||
Computed: true, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
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)), | ||
VPCRegion: aws.String(meta.(*AWSClient).region), | ||
}, | ||
Comment: aws.String("Managed by Terraform"), | ||
} | ||
if w := d.Get("vpc_region"); w != "" { | ||
req.VPC.VPCRegion = aws.String(w.(string)) | ||
} | ||
|
||
log.Printf("[DEBUG] Associating Route53 Private Zone %s with VPC %s with region %s", *req.HostedZoneID, *req.VPC.VPCID, *req.VPC.VPCRegion) | ||
resp, err := r53.AssociateVPCWithHostedZone(req) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Store association id | ||
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 | ||
} | ||
|
||
return resourceAwsRoute53ZoneAssociationUpdate(d, meta) | ||
} | ||
|
||
func resourceAwsRoute53ZoneAssociationRead(d *schema.ResourceData, meta interface{}) error { | ||
r53 := meta.(*AWSClient).r53conn | ||
zone_id, vpc_id := resourceAwsRoute53ZoneAssociationParseId(d.Id()) | ||
zone, err := r53.GetHostedZone(&route53.GetHostedZoneInput{ID: aws.String(zone_id)}) | ||
if err != nil { | ||
// Handle a deleted zone | ||
if r53err, ok := err.(aws.APIError); ok && r53err.Code == "NoSuchHostedZone" { | ||
d.SetId("") | ||
return nil | ||
} | ||
return err | ||
} | ||
|
||
for _, vpc := range zone.VPCs { | ||
if vpc_id == *vpc.VPCID { | ||
// 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 | ||
zone_id, vpc_id := resourceAwsRoute53ZoneAssociationParseId(d.Id()) | ||
log.Printf("[DEBUG] Deleting Route53 Private Zone (%s) association (VPC: %s)", | ||
zone_id, vpc_id) | ||
|
||
req := &route53.DisassociateVPCFromHostedZoneInput{ | ||
HostedZoneID: aws.String(zone_id), | ||
VPC: &route53.VPC{ | ||
VPCID: aws.String(vpc_id), | ||
VPCRegion: aws.String(d.Get("vpc_region").(string)), | ||
}, | ||
Comment: aws.String("Managed by Terraform"), | ||
} | ||
|
||
_, err := r53.DisassociateVPCFromHostedZone(req) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func resourceAwsRoute53ZoneAssociationParseId(id string) (zone_id, vpc_id string) { | ||
parts := strings.SplitN(id, ":", 2) | ||
zone_id = parts[0] | ||
vpc_id = parts[1] | ||
return | ||
} |
Oops, something went wrong.