PublicVirtualInterface

class PublicVirtualInterface : KotlinCustomResource

Provides a Direct Connect public virtual interface resource.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const foo = new aws.directconnect.PublicVirtualInterface("foo", {
connectionId: "dxcon-zzzzzzzz",
name: "vif-foo",
vlan: 4094,
addressFamily: "ipv4",
bgpAsn: 65352,
customerAddress: "175.45.176.1/30",
amazonAddress: "175.45.176.2/30",
routeFilterPrefixes: [
"210.52.109.0/24",
"175.45.176.0/22",
],
});
import pulumi
import pulumi_aws as aws
foo = aws.directconnect.PublicVirtualInterface("foo",
connection_id="dxcon-zzzzzzzz",
name="vif-foo",
vlan=4094,
address_family="ipv4",
bgp_asn=65352,
customer_address="175.45.176.1/30",
amazon_address="175.45.176.2/30",
route_filter_prefixes=[
"210.52.109.0/24",
"175.45.176.0/22",
])
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var foo = new Aws.DirectConnect.PublicVirtualInterface("foo", new()
{
ConnectionId = "dxcon-zzzzzzzz",
Name = "vif-foo",
Vlan = 4094,
AddressFamily = "ipv4",
BgpAsn = 65352,
CustomerAddress = "175.45.176.1/30",
AmazonAddress = "175.45.176.2/30",
RouteFilterPrefixes = new[]
{
"210.52.109.0/24",
"175.45.176.0/22",
},
});
});
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 {
_, err := directconnect.NewPublicVirtualInterface(ctx, "foo", &directconnect.PublicVirtualInterfaceArgs{
ConnectionId: pulumi.String("dxcon-zzzzzzzz"),
Name: pulumi.String("vif-foo"),
Vlan: pulumi.Int(4094),
AddressFamily: pulumi.String("ipv4"),
BgpAsn: pulumi.Int(65352),
CustomerAddress: pulumi.String("175.45.176.1/30"),
AmazonAddress: pulumi.String("175.45.176.2/30"),
RouteFilterPrefixes: pulumi.StringArray{
pulumi.String("210.52.109.0/24"),
pulumi.String("175.45.176.0/22"),
},
})
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.PublicVirtualInterface;
import com.pulumi.aws.directconnect.PublicVirtualInterfaceArgs;
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 foo = new PublicVirtualInterface("foo", PublicVirtualInterfaceArgs.builder()
.connectionId("dxcon-zzzzzzzz")
.name("vif-foo")
.vlan(4094)
.addressFamily("ipv4")
.bgpAsn(65352)
.customerAddress("175.45.176.1/30")
.amazonAddress("175.45.176.2/30")
.routeFilterPrefixes(
"210.52.109.0/24",
"175.45.176.0/22")
.build());
}
}
resources:
foo:
type: aws:directconnect:PublicVirtualInterface
properties:
connectionId: dxcon-zzzzzzzz
name: vif-foo
vlan: 4094
addressFamily: ipv4
bgpAsn: 65352
customerAddress: 175.45.176.1/30
amazonAddress: 175.45.176.2/30
routeFilterPrefixes:
- 210.52.109.0/24
- 175.45.176.0/22

Import

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

$ pulumi import aws:directconnect/publicVirtualInterface:PublicVirtualInterface 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 id: Output<String>
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

A list of routes to be advertised to the AWS network in this region.

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.