2015-07-10 14:29:03 +02:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/awserr"
|
|
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
|
|
|
"github.com/hashicorp/terraform/helper/hashcode"
|
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
|
|
)
|
|
|
|
|
|
|
|
func resourceAwsVpcEndpoint() *schema.Resource {
|
|
|
|
return &schema.Resource{
|
|
|
|
Create: resourceAwsVPCEndpointCreate,
|
|
|
|
Read: resourceAwsVPCEndpointRead,
|
|
|
|
Update: resourceAwsVPCEndpointUpdate,
|
|
|
|
Delete: resourceAwsVPCEndpointDelete,
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"policy": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
|
|
|
Computed: true,
|
|
|
|
StateFunc: normalizeJson,
|
|
|
|
},
|
|
|
|
"vpc_id": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
"service_name": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
"route_table_ids": &schema.Schema{
|
|
|
|
Type: schema.TypeSet,
|
|
|
|
Optional: true,
|
|
|
|
Elem: &schema.Schema{Type: schema.TypeString},
|
|
|
|
Set: func(v interface{}) int {
|
|
|
|
return hashcode.String(v.(string))
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsVPCEndpointCreate(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
conn := meta.(*AWSClient).ec2conn
|
2015-08-17 20:27:16 +02:00
|
|
|
input := &ec2.CreateVpcEndpointInput{
|
|
|
|
VpcId: aws.String(d.Get("vpc_id").(string)),
|
|
|
|
RouteTableIds: expandStringList(d.Get("route_table_ids").(*schema.Set).List()),
|
2015-07-10 14:29:03 +02:00
|
|
|
ServiceName: aws.String(d.Get("service_name").(string)),
|
|
|
|
}
|
|
|
|
|
|
|
|
if v, ok := d.GetOk("policy"); ok {
|
|
|
|
policy := normalizeJson(v)
|
|
|
|
input.PolicyDocument = aws.String(policy)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] Creating VPC Endpoint: %#v", input)
|
2015-08-17 20:27:16 +02:00
|
|
|
output, err := conn.CreateVpcEndpoint(input)
|
2015-07-10 14:29:03 +02:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error creating VPC Endpoint: %s", err)
|
|
|
|
}
|
2015-08-17 20:27:16 +02:00
|
|
|
log.Printf("[DEBUG] VPC Endpoint %q created.", *output.VpcEndpoint.VpcEndpointId)
|
2015-07-10 14:29:03 +02:00
|
|
|
|
2015-08-17 20:27:16 +02:00
|
|
|
d.SetId(*output.VpcEndpoint.VpcEndpointId)
|
2015-07-10 14:29:03 +02:00
|
|
|
|
|
|
|
return resourceAwsVPCEndpointRead(d, meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsVPCEndpointRead(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
conn := meta.(*AWSClient).ec2conn
|
2015-08-17 20:27:16 +02:00
|
|
|
input := &ec2.DescribeVpcEndpointsInput{
|
|
|
|
VpcEndpointIds: []*string{aws.String(d.Id())},
|
2015-07-10 14:29:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] Reading VPC Endpoint: %q", d.Id())
|
2015-08-17 20:27:16 +02:00
|
|
|
output, err := conn.DescribeVpcEndpoints(input)
|
2015-07-10 14:29:03 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
ec2err, ok := err.(awserr.Error)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("Error reading VPC Endpoint: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
if ec2err.Code() == "InvalidVpcEndpointId.NotFound" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Errorf("Error reading VPC Endpoint: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
2015-08-17 20:27:16 +02:00
|
|
|
if len(output.VpcEndpoints) != 1 {
|
2015-07-10 14:29:03 +02:00
|
|
|
return fmt.Errorf("There's no unique VPC Endpoint, but %d endpoints: %#v",
|
2015-08-17 20:27:16 +02:00
|
|
|
len(output.VpcEndpoints), output.VpcEndpoints)
|
2015-07-10 14:29:03 +02:00
|
|
|
}
|
|
|
|
|
2015-08-17 20:27:16 +02:00
|
|
|
vpce := output.VpcEndpoints[0]
|
2015-07-10 14:29:03 +02:00
|
|
|
|
2015-08-17 20:27:16 +02:00
|
|
|
d.Set("vpc_id", vpce.VpcId)
|
2015-07-10 14:29:03 +02:00
|
|
|
d.Set("policy", normalizeJson(*vpce.PolicyDocument))
|
|
|
|
d.Set("service_name", vpce.ServiceName)
|
2015-08-17 20:27:16 +02:00
|
|
|
d.Set("route_table_ids", vpce.RouteTableIds)
|
2015-07-10 14:29:03 +02:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsVPCEndpointUpdate(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
conn := meta.(*AWSClient).ec2conn
|
2015-08-17 20:27:16 +02:00
|
|
|
input := &ec2.ModifyVpcEndpointInput{
|
|
|
|
VpcEndpointId: aws.String(d.Id()),
|
2015-07-10 14:29:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if d.HasChange("route_table_ids") {
|
|
|
|
o, n := d.GetChange("route_table_ids")
|
|
|
|
os := o.(*schema.Set)
|
|
|
|
ns := n.(*schema.Set)
|
|
|
|
|
|
|
|
add := expandStringList(os.Difference(ns).List())
|
|
|
|
if len(add) > 0 {
|
2015-08-17 20:27:16 +02:00
|
|
|
input.AddRouteTableIds = add
|
2015-07-10 14:29:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
remove := expandStringList(ns.Difference(os).List())
|
|
|
|
if len(remove) > 0 {
|
2015-08-17 20:27:16 +02:00
|
|
|
input.RemoveRouteTableIds = remove
|
2015-07-10 14:29:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if d.HasChange("policy") {
|
|
|
|
policy := normalizeJson(d.Get("policy"))
|
|
|
|
input.PolicyDocument = aws.String(policy)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] Updating VPC Endpoint: %#v", input)
|
2015-08-17 20:27:16 +02:00
|
|
|
_, err := conn.ModifyVpcEndpoint(input)
|
2015-07-10 14:29:03 +02:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error updating VPC Endpoint: %s", err)
|
|
|
|
}
|
2015-08-17 20:27:16 +02:00
|
|
|
log.Printf("[DEBUG] VPC Endpoint %q updated", input.VpcEndpointId)
|
2015-07-10 14:29:03 +02:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsVPCEndpointDelete(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
conn := meta.(*AWSClient).ec2conn
|
2015-08-17 20:27:16 +02:00
|
|
|
input := &ec2.DeleteVpcEndpointsInput{
|
|
|
|
VpcEndpointIds: []*string{aws.String(d.Id())},
|
2015-07-10 14:29:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] Deleting VPC Endpoint: %#v", input)
|
2015-08-17 20:27:16 +02:00
|
|
|
_, err := conn.DeleteVpcEndpoints(input)
|
2015-07-10 14:29:03 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
ec2err, ok := err.(awserr.Error)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("Error deleting VPC Endpoint: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
if ec2err.Code() == "InvalidVpcEndpointId.NotFound" {
|
|
|
|
log.Printf("[DEBUG] VPC Endpoint %q is already gone", d.Id())
|
|
|
|
} else {
|
|
|
|
return fmt.Errorf("Error deleting VPC Endpoint: %s", err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] VPC Endpoint %q deleted", d.Id())
|
|
|
|
d.SetId("")
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|