TransitVirtualInterface

class TransitVirtualInterface : KotlinCustomResource

Provides a Direct Connect transit virtual interface resource. A transit virtual interface is a VLAN that transports traffic from a Direct Connect gateway to one or more transit gateways.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.directconnect.Gateway("example", {
name: "tf-dxg-example",
amazonSideAsn: "64512",
});
const exampleTransitVirtualInterface = new aws.directconnect.TransitVirtualInterface("example", {
connectionId: exampleAwsDxConnection.id,
dxGatewayId: example.id,
name: "tf-transit-vif-example",
vlan: 4094,
addressFamily: "ipv4",
bgpAsn: 65352,
});
import pulumi
import pulumi_aws as aws
example = aws.directconnect.Gateway("example",
name="tf-dxg-example",
amazon_side_asn="64512")
example_transit_virtual_interface = aws.directconnect.TransitVirtualInterface("example",
connection_id=example_aws_dx_connection["id"],
dx_gateway_id=example.id,
name="tf-transit-vif-example",
vlan=4094,
address_family="ipv4",
bgp_asn=65352)
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.DirectConnect.Gateway("example", new()
{
Name = "tf-dxg-example",
AmazonSideAsn = "64512",
});
var exampleTransitVirtualInterface = new Aws.DirectConnect.TransitVirtualInterface("example", new()
{
ConnectionId = exampleAwsDxConnection.Id,
DxGatewayId = example.Id,
Name = "tf-transit-vif-example",
Vlan = 4094,
AddressFamily = "ipv4",
BgpAsn = 65352,
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/directconnect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := directconnect.NewGateway(ctx, "example", &directconnect.GatewayArgs{
Name: pulumi.String("tf-dxg-example"),
AmazonSideAsn: pulumi.String("64512"),
})
if err != nil {
return err
}
_, err = directconnect.NewTransitVirtualInterface(ctx, "example", &directconnect.TransitVirtualInterfaceArgs{
ConnectionId: pulumi.Any(exampleAwsDxConnection.Id),
DxGatewayId: example.ID(),
Name: pulumi.String("tf-transit-vif-example"),
Vlan: pulumi.Int(4094),
AddressFamily: pulumi.String("ipv4"),
BgpAsn: pulumi.Int(65352),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.directconnect.Gateway;
import com.pulumi.aws.directconnect.GatewayArgs;
import com.pulumi.aws.directconnect.TransitVirtualInterface;
import com.pulumi.aws.directconnect.TransitVirtualInterfaceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Gateway("example", GatewayArgs.builder()
.name("tf-dxg-example")
.amazonSideAsn("64512")
.build());
var exampleTransitVirtualInterface = new TransitVirtualInterface("exampleTransitVirtualInterface", TransitVirtualInterfaceArgs.builder()
.connectionId(exampleAwsDxConnection.id())
.dxGatewayId(example.id())
.name("tf-transit-vif-example")
.vlan(4094)
.addressFamily("ipv4")
.bgpAsn(65352)
.build());
}
}
resources:
example:
type: aws:directconnect:Gateway
properties:
name: tf-dxg-example
amazonSideAsn: 64512
exampleTransitVirtualInterface:
type: aws:directconnect:TransitVirtualInterface
name: example
properties:
connectionId: ${exampleAwsDxConnection.id}
dxGatewayId: ${example.id}
name: tf-transit-vif-example
vlan: 4094
addressFamily: ipv4
bgpAsn: 65352

Import

Using pulumi import, import Direct Connect transit virtual interfaces using the VIF id. For example:

$ pulumi import aws:directconnect/transitVirtualInterface:TransitVirtualInterface test dxvif-33cc44dd

Properties

Link copied to clipboard
val addressFamily: Output<String>

The address family for the BGP peer. ipv4 or ipv6.

Link copied to clipboard
val amazonAddress: Output<String>

The IPv4 CIDR address to use to send traffic to Amazon. Required for IPv4 BGP peers.

Link copied to clipboard
val amazonSideAsn: Output<String>
Link copied to clipboard
val arn: Output<String>

The ARN of the virtual interface.

Link copied to clipboard
val awsDevice: Output<String>

The Direct Connect endpoint on which the virtual interface terminates.

Link copied to clipboard
val bgpAsn: Output<Int>

The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.

Link copied to clipboard
val bgpAuthKey: Output<String>

The authentication key for BGP configuration.

Link copied to clipboard
val connectionId: Output<String>

The ID of the Direct Connect connection (or LAG) on which to create the virtual interface.

Link copied to clipboard
val customerAddress: Output<String>

The IPv4 CIDR destination address to which Amazon should send traffic. Required for IPv4 BGP peers.

Link copied to clipboard
val dxGatewayId: Output<String>

The ID of the Direct Connect gateway to which to connect the virtual interface.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

Indicates whether jumbo frames (8500 MTU) are supported.

Link copied to clipboard
val mtu: Output<Int>?

The maximum transmission unit (MTU) is the size, in bytes, of the largest permissible packet that can be passed over the connection. The MTU of a virtual transit interface can be either 1500 or 8500 (jumbo frames). Default is 1500.

Link copied to clipboard
val name: Output<String>

The name for the virtual interface.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val sitelinkEnabled: Output<Boolean>?

Indicates whether to enable or disable SiteLink.

Link copied to clipboard
val tags: Output<Map<String, String>>?

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val vlan: Output<Int>

The VLAN ID.