-
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 #2695 from TimeIncOSS/f-aws-vpc-endpoint
provider/aws: Add new resource - aws_vpc_endpoint
- Loading branch information
Showing
6 changed files
with
432 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
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 | ||
input := &ec2.CreateVPCEndpointInput{ | ||
VPCID: aws.String(d.Get("vpc_id").(string)), | ||
RouteTableIDs: expandStringList(d.Get("route_table_ids").(*schema.Set).List()), | ||
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) | ||
output, err := conn.CreateVPCEndpoint(input) | ||
if err != nil { | ||
return fmt.Errorf("Error creating VPC Endpoint: %s", err) | ||
} | ||
log.Printf("[DEBUG] VPC Endpoint %q created.", *output.VPCEndpoint.VPCEndpointID) | ||
|
||
d.SetId(*output.VPCEndpoint.VPCEndpointID) | ||
|
||
return resourceAwsVPCEndpointRead(d, meta) | ||
} | ||
|
||
func resourceAwsVPCEndpointRead(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).ec2conn | ||
input := &ec2.DescribeVPCEndpointsInput{ | ||
VPCEndpointIDs: []*string{aws.String(d.Id())}, | ||
} | ||
|
||
log.Printf("[DEBUG] Reading VPC Endpoint: %q", d.Id()) | ||
output, err := conn.DescribeVPCEndpoints(input) | ||
|
||
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()) | ||
} | ||
|
||
if len(output.VPCEndpoints) != 1 { | ||
return fmt.Errorf("There's no unique VPC Endpoint, but %d endpoints: %#v", | ||
len(output.VPCEndpoints), output.VPCEndpoints) | ||
} | ||
|
||
vpce := output.VPCEndpoints[0] | ||
|
||
d.Set("vpc_id", vpce.VPCID) | ||
d.Set("policy", normalizeJson(*vpce.PolicyDocument)) | ||
d.Set("service_name", vpce.ServiceName) | ||
d.Set("route_table_ids", vpce.RouteTableIDs) | ||
|
||
return nil | ||
} | ||
|
||
func resourceAwsVPCEndpointUpdate(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).ec2conn | ||
input := &ec2.ModifyVPCEndpointInput{ | ||
VPCEndpointID: aws.String(d.Id()), | ||
} | ||
|
||
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 { | ||
input.AddRouteTableIDs = add | ||
} | ||
|
||
remove := expandStringList(ns.Difference(os).List()) | ||
if len(remove) > 0 { | ||
input.RemoveRouteTableIDs = remove | ||
} | ||
} | ||
|
||
if d.HasChange("policy") { | ||
policy := normalizeJson(d.Get("policy")) | ||
input.PolicyDocument = aws.String(policy) | ||
} | ||
|
||
log.Printf("[DEBUG] Updating VPC Endpoint: %#v", input) | ||
_, err := conn.ModifyVPCEndpoint(input) | ||
if err != nil { | ||
return fmt.Errorf("Error updating VPC Endpoint: %s", err) | ||
} | ||
log.Printf("[DEBUG] VPC Endpoint %q updated", input.VPCEndpointID) | ||
|
||
return nil | ||
} | ||
|
||
func resourceAwsVPCEndpointDelete(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).ec2conn | ||
input := &ec2.DeleteVPCEndpointsInput{ | ||
VPCEndpointIDs: []*string{aws.String(d.Id())}, | ||
} | ||
|
||
log.Printf("[DEBUG] Deleting VPC Endpoint: %#v", input) | ||
_, err := conn.DeleteVPCEndpoints(input) | ||
|
||
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 | ||
} |
Oops, something went wrong.