-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 'aws_dx_transit_virtual_interface' resource.
- Loading branch information
Showing
6 changed files
with
456 additions
and
15 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,228 @@ | ||
package aws | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"time" | ||
|
||
"github.com/aws/aws-sdk-go/aws" | ||
"github.com/aws/aws-sdk-go/aws/arn" | ||
"github.com/aws/aws-sdk-go/service/directconnect" | ||
"github.com/hashicorp/terraform/helper/schema" | ||
"github.com/hashicorp/terraform/helper/validation" | ||
) | ||
|
||
func resourceAwsDxTransitVirtualInterface() *schema.Resource { | ||
return &schema.Resource{ | ||
Create: resourceAwsDxTransitVirtualInterfaceCreate, | ||
Read: resourceAwsDxTransitVirtualInterfaceRead, | ||
Update: resourceAwsDxTransitVirtualInterfaceUpdate, | ||
Delete: resourceAwsDxTransitVirtualInterfaceDelete, | ||
Importer: &schema.ResourceImporter{ | ||
State: resourceAwsDxTransitVirtualInterfaceImport, | ||
}, | ||
|
||
Schema: map[string]*schema.Schema{ | ||
"address_family": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
ValidateFunc: validation.StringInSlice([]string{ | ||
directconnect.AddressFamilyIpv4, | ||
directconnect.AddressFamilyIpv6, | ||
}, false), | ||
}, | ||
"amazon_address": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
Computed: true, | ||
ForceNew: true, | ||
}, | ||
"arn": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"aws_device": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"bgp_asn": { | ||
Type: schema.TypeInt, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"bgp_auth_key": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
Computed: true, | ||
ForceNew: true, | ||
}, | ||
"connection_id": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"customer_address": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
Computed: true, | ||
ForceNew: true, | ||
}, | ||
"dx_gateway_id": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"jumbo_frame_capable": { | ||
Type: schema.TypeBool, | ||
Computed: true, | ||
}, | ||
"mtu": { | ||
Type: schema.TypeInt, | ||
Default: 1500, | ||
Optional: true, | ||
ValidateFunc: validation.IntInSlice([]int{1500, 8500}), | ||
}, | ||
"name": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"tags": tagsSchema(), | ||
"vlan": { | ||
Type: schema.TypeInt, | ||
Required: true, | ||
ForceNew: true, | ||
ValidateFunc: validation.IntBetween(1, 4094), | ||
}, | ||
}, | ||
|
||
Timeouts: &schema.ResourceTimeout{ | ||
Create: schema.DefaultTimeout(10 * time.Minute), | ||
Update: schema.DefaultTimeout(10 * time.Minute), | ||
Delete: schema.DefaultTimeout(10 * time.Minute), | ||
}, | ||
} | ||
} | ||
|
||
func resourceAwsDxTransitVirtualInterfaceCreate(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).dxconn | ||
|
||
req := &directconnect.CreateTransitVirtualInterfaceInput{ | ||
ConnectionId: aws.String(d.Get("connection_id").(string)), | ||
NewTransitVirtualInterface: &directconnect.NewTransitVirtualInterface{ | ||
AddressFamily: aws.String(d.Get("address_family").(string)), | ||
Asn: aws.Int64(int64(d.Get("bgp_asn").(int))), | ||
DirectConnectGatewayId: aws.String(d.Get("dx_gateway_id").(string)), | ||
Mtu: aws.Int64(int64(d.Get("mtu").(int))), | ||
VirtualInterfaceName: aws.String(d.Get("name").(string)), | ||
Vlan: aws.Int64(int64(d.Get("vlan").(int))), | ||
}, | ||
} | ||
if v, ok := d.GetOk("amazon_address"); ok && v.(string) != "" { | ||
req.NewTransitVirtualInterface.AmazonAddress = aws.String(v.(string)) | ||
} | ||
if v, ok := d.GetOk("bgp_auth_key"); ok { | ||
req.NewTransitVirtualInterface.AuthKey = aws.String(v.(string)) | ||
} | ||
if v, ok := d.GetOk("customer_address"); ok && v.(string) != "" { | ||
req.NewTransitVirtualInterface.CustomerAddress = aws.String(v.(string)) | ||
} | ||
|
||
log.Printf("[DEBUG] Creating Direct Connect transit virtual interface: %#v", req) | ||
resp, err := conn.CreateTransitVirtualInterface(req) | ||
if err != nil { | ||
return fmt.Errorf("error creating Direct Connect transit virtual interface: %s", err) | ||
} | ||
|
||
d.SetId(aws.StringValue(resp.VirtualInterface.VirtualInterfaceId)) | ||
arn := arn.ARN{ | ||
Partition: meta.(*AWSClient).partition, | ||
Region: meta.(*AWSClient).region, | ||
Service: "directconnect", | ||
AccountID: meta.(*AWSClient).accountid, | ||
Resource: fmt.Sprintf("dxvif/%s", d.Id()), | ||
}.String() | ||
d.Set("arn", arn) | ||
|
||
if err := dxTransitVirtualInterfaceWaitUntilAvailable(conn, d.Id(), d.Timeout(schema.TimeoutCreate)); err != nil { | ||
return err | ||
} | ||
|
||
return resourceAwsDxTransitVirtualInterfaceUpdate(d, meta) | ||
} | ||
|
||
func resourceAwsDxTransitVirtualInterfaceRead(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).dxconn | ||
|
||
vif, err := dxVirtualInterfaceRead(d.Id(), conn) | ||
if err != nil { | ||
return err | ||
} | ||
if vif == nil { | ||
log.Printf("[WARN] Direct Connect transit virtual interface (%s) not found, removing from state", d.Id()) | ||
d.SetId("") | ||
return nil | ||
} | ||
|
||
d.Set("address_family", vif.AddressFamily) | ||
d.Set("amazon_address", vif.AmazonAddress) | ||
d.Set("aws_device", vif.AwsDeviceV2) | ||
d.Set("bgp_asn", vif.Asn) | ||
d.Set("bgp_auth_key", vif.AuthKey) | ||
d.Set("connection_id", vif.ConnectionId) | ||
d.Set("customer_address", vif.CustomerAddress) | ||
d.Set("dx_gateway_id", vif.DirectConnectGatewayId) | ||
d.Set("jumbo_frame_capable", vif.JumboFrameCapable) | ||
d.Set("mtu", vif.Mtu) | ||
d.Set("name", vif.VirtualInterfaceName) | ||
d.Set("vlan", vif.Vlan) | ||
if err := getTagsDX(conn, d, d.Get("arn").(string)); err != nil { | ||
return fmt.Errorf("error getting Direct Connect transit virtual interface (%s) tags: %s", d.Id(), err) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func resourceAwsDxTransitVirtualInterfaceUpdate(d *schema.ResourceData, meta interface{}) error { | ||
if err := dxVirtualInterfaceUpdate(d, meta); err != nil { | ||
return err | ||
} | ||
|
||
if err := dxTransitVirtualInterfaceWaitUntilAvailable(meta.(*AWSClient).dxconn, d.Id(), d.Timeout(schema.TimeoutUpdate)); err != nil { | ||
return err | ||
} | ||
|
||
return resourceAwsDxTransitVirtualInterfaceRead(d, meta) | ||
} | ||
|
||
func resourceAwsDxTransitVirtualInterfaceDelete(d *schema.ResourceData, meta interface{}) error { | ||
return dxVirtualInterfaceDelete(d, meta) | ||
} | ||
|
||
func resourceAwsDxTransitVirtualInterfaceImport(d *schema.ResourceData, meta interface{}) ([]*schema.ResourceData, error) { | ||
arn := arn.ARN{ | ||
Partition: meta.(*AWSClient).partition, | ||
Region: meta.(*AWSClient).region, | ||
Service: "directconnect", | ||
AccountID: meta.(*AWSClient).accountid, | ||
Resource: fmt.Sprintf("dxvif/%s", d.Id()), | ||
}.String() | ||
d.Set("arn", arn) | ||
|
||
return []*schema.ResourceData{d}, nil | ||
} | ||
|
||
func dxTransitVirtualInterfaceWaitUntilAvailable(conn *directconnect.DirectConnect, vifId string, timeout time.Duration) error { | ||
return dxVirtualInterfaceWaitUntilAvailable( | ||
conn, | ||
vifId, | ||
timeout, | ||
[]string{ | ||
directconnect.VirtualInterfaceStatePending, | ||
}, | ||
[]string{ | ||
directconnect.VirtualInterfaceStateAvailable, | ||
directconnect.VirtualInterfaceStateDown, | ||
}) | ||
} |
Oops, something went wrong.