Public Virtual Interface
Provides a Direct Connect public virtual interface resource.
Example Usage
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()
.addressFamily("ipv4")
.amazonAddress("175.45.176.2/30")
.bgpAsn(65352)
.connectionId("dxcon-zzzzzzzz")
.customerAddress("175.45.176.1/30")
.routeFilterPrefixes(
"210.52.109.0/24",
"175.45.176.0/22")
.vlan(4094)
.build());
}
}
Content copied to clipboard
Import
Direct Connect public virtual interfaces can be imported using the vif id
, e.g.,
$ pulumi import aws:directconnect/publicVirtualInterface:PublicVirtualInterface test dxvif-33cc44dd
Content copied to clipboard
Properties
Link copied to clipboard
The address family for the BGP peer. ipv4
or ipv6
.
Link copied to clipboard
The IPv4 CIDR address to use to send traffic to Amazon. Required for IPv4 BGP peers.
Link copied to clipboard
Link copied to clipboard
The authentication key for BGP configuration.
Link copied to clipboard
The ID of the Direct Connect connection (or LAG) on which to create the virtual interface.
Link copied to clipboard
The IPv4 CIDR destination address to which Amazon should send traffic. Required for IPv4 BGP peers.
Link copied to clipboard
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.