HostedTransitVirtualInterfaceAcceptor

Provides a resource to manage the accepter’s side of a Direct Connect hosted transit virtual interface. This resource accepts ownership of a transit virtual interface created by another AWS account.

NOTE: AWS allows a Direct Connect hosted transit virtual interface to be deleted from either the allocator’s or accepter’s side. However, this provider only allows the Direct Connect hosted transit virtual interface to be deleted from the allocator’s side by removing the corresponding aws.directconnect.HostedTransitVirtualInterface resource from your configuration. Removing a aws.directconnect.HostedTransitVirtualInterfaceAcceptor resource from your configuration will remove it from your statefile and management, but will not delete the Direct Connect virtual interface.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
    public MyStack()
    {
        var accepter = new Aws.Provider("accepter", new Aws.ProviderArgs
        {
        });
        var accepterCallerIdentity = Output.Create(Aws.GetCallerIdentity.InvokeAsync());
        // Creator's side of the VIF
        var creator = new Aws.DirectConnect.HostedTransitVirtualInterface("creator", new Aws.DirectConnect.HostedTransitVirtualInterfaceArgs
        {
            AddressFamily = "ipv4",
            BgpAsn = 65352,
            ConnectionId = "dxcon-zzzzzzzz",
            OwnerAccountId = accepterCallerIdentity.Apply(accepterCallerIdentity => accepterCallerIdentity.AccountId),
            Vlan = 4094,
        }, new CustomResourceOptions
        {
            DependsOn = 
            {
                "aws_dx_gateway.example",
            },
        });
        // Accepter's side of the VIF.
        var example = new Aws.DirectConnect.Gateway("example", new Aws.DirectConnect.GatewayArgs
        {
            AmazonSideAsn = "64512",
        }, new CustomResourceOptions
        {
            Provider = "aws.accepter",
        });
        var accepterHostedTransitVirtualInterfaceAcceptor = new Aws.DirectConnect.HostedTransitVirtualInterfaceAcceptor("accepterHostedTransitVirtualInterfaceAcceptor", new Aws.DirectConnect.HostedTransitVirtualInterfaceAcceptorArgs
        {
            DxGatewayId = example.Id,
            Tags = 
            {
                { "Side", "Accepter" },
            },
            VirtualInterfaceId = creator.Id,
        }, new CustomResourceOptions
        {
            Provider = "aws.accepter",
        });
    }

}
package main

import (
    "github.com/pulumi/pulumi-aws/sdk/v2/go/aws"
    "github.com/pulumi/pulumi-aws/sdk/v2/go/aws/directconnect"
    "github.com/pulumi/pulumi-aws/sdk/v2/go/aws/providers"
    "github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)

func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
        _, err := providers.Newaws(ctx, "accepter", nil)
        if err != nil {
            return err
        }
        accepterCallerIdentity, err := aws.GetCallerIdentity(ctx, nil, nil)
        if err != nil {
            return err
        }
        creator, err := directconnect.NewHostedTransitVirtualInterface(ctx, "creator", &directconnect.HostedTransitVirtualInterfaceArgs{
            AddressFamily:  pulumi.String("ipv4"),
            BgpAsn:         pulumi.Int(65352),
            ConnectionId:   pulumi.String("dxcon-zzzzzzzz"),
            OwnerAccountId: pulumi.String(accepterCallerIdentity.AccountId),
            Vlan:           pulumi.Int(4094),
        }, pulumi.DependsOn([]pulumi.Resource{
            "aws_dx_gateway.example",
        }))
        if err != nil {
            return err
        }
        example, err := directconnect.NewGateway(ctx, "example", &directconnect.GatewayArgs{
            AmazonSideAsn: pulumi.String("64512"),
        }, pulumi.Provider("aws.accepter"))
        if err != nil {
            return err
        }
        _, err = directconnect.NewHostedTransitVirtualInterfaceAcceptor(ctx, "accepterHostedTransitVirtualInterfaceAcceptor", &directconnect.HostedTransitVirtualInterfaceAcceptorArgs{
            DxGatewayId: example.ID(),
            Tags: pulumi.StringMap{
                "Side": pulumi.String("Accepter"),
            },
            VirtualInterfaceId: creator.ID(),
        }, pulumi.Provider("aws.accepter"))
        if err != nil {
            return err
        }
        return nil
    })
}
import pulumi
import pulumi_aws as aws
import pulumi_pulumi as pulumi

accepter = pulumi.providers.Aws("accepter")
accepter_caller_identity = aws.get_caller_identity()
# Creator's side of the VIF
creator = aws.directconnect.HostedTransitVirtualInterface("creator",
    address_family="ipv4",
    bgp_asn=65352,
    connection_id="dxcon-zzzzzzzz",
    owner_account_id=accepter_caller_identity.account_id,
    vlan=4094,
    opts=ResourceOptions(depends_on=["aws_dx_gateway.example"]))
# Accepter's side of the VIF.
example = aws.directconnect.Gateway("example", amazon_side_asn=64512,
opts=ResourceOptions(provider="aws.accepter"))
accepter_hosted_transit_virtual_interface_acceptor = aws.directconnect.HostedTransitVirtualInterfaceAcceptor("accepterHostedTransitVirtualInterfaceAcceptor",
    dx_gateway_id=example.id,
    tags={
        "Side": "Accepter",
    },
    virtual_interface_id=creator.id,
    opts=ResourceOptions(provider="aws.accepter"))
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const accepter = new aws.Provider("accepter", {});
const accepterCallerIdentity = pulumi.output(aws.getCallerIdentity({ provider: accepter, async: true }));
// Accepter's side of the VIF.
const example = new aws.directconnect.Gateway("example", {
    amazonSideAsn: "64512",
}, { provider: accepter });
// Creator's side of the VIF
const creator = new aws.directconnect.HostedTransitVirtualInterface("creator", {
    addressFamily: "ipv4",
    bgpAsn: 65352,
    connectionId: "dxcon-zzzzzzzz",
    ownerAccountId: accepterCallerIdentity.accountId,
    vlan: 4094,
}, { dependsOn: [example] });
const accepterHostedTransitVirtualInterfaceAcceptor = new aws.directconnect.HostedTransitVirtualInterfaceAcceptor("accepter", {
    dxGatewayId: example.id,
    tags: {
        Side: "Accepter",
    },
    virtualInterfaceId: creator.id,
}, { provider: accepter });

Create a HostedTransitVirtualInterfaceAcceptor Resource

def HostedTransitVirtualInterfaceAcceptor(resource_name, opts=None, dx_gateway_id=None, tags=None, virtual_interface_id=None, __props__=None);
name string
The unique name of the resource.
args HostedTransitVirtualInterfaceAcceptorArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args HostedTransitVirtualInterfaceAcceptorArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args HostedTransitVirtualInterfaceAcceptorArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

HostedTransitVirtualInterfaceAcceptor Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The HostedTransitVirtualInterfaceAcceptor resource accepts the following input properties:

DxGatewayId string

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

VirtualInterfaceId string

The ID of the Direct Connect virtual interface to accept.

Tags Dictionary<string, string>

A map of tags to assign to the resource.

DxGatewayId string

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

VirtualInterfaceId string

The ID of the Direct Connect virtual interface to accept.

Tags map[string]string

A map of tags to assign to the resource.

dxGatewayId string

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

virtualInterfaceId string

The ID of the Direct Connect virtual interface to accept.

tags {[key: string]: string}

A map of tags to assign to the resource.

dx_gateway_id str

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

virtual_interface_id str

The ID of the Direct Connect virtual interface to accept.

tags Dict[str, str]

A map of tags to assign to the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the HostedTransitVirtualInterfaceAcceptor resource produces the following output properties:

Arn string

The ARN of the virtual interface.

Id string
The provider-assigned unique ID for this managed resource.
Arn string

The ARN of the virtual interface.

Id string
The provider-assigned unique ID for this managed resource.
arn string

The ARN of the virtual interface.

id string
The provider-assigned unique ID for this managed resource.
arn str

The ARN of the virtual interface.

id str
The provider-assigned unique ID for this managed resource.

Look up an Existing HostedTransitVirtualInterfaceAcceptor Resource

Get an existing HostedTransitVirtualInterfaceAcceptor resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

static get(resource_name, id, opts=None, arn=None, dx_gateway_id=None, tags=None, virtual_interface_id=None, __props__=None);
func GetHostedTransitVirtualInterfaceAcceptor(ctx *Context, name string, id IDInput, state *HostedTransitVirtualInterfaceAcceptorState, opts ...ResourceOption) (*HostedTransitVirtualInterfaceAcceptor, error)
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.

The following state arguments are supported:

Arn string

The ARN of the virtual interface.

DxGatewayId string

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

Tags Dictionary<string, string>

A map of tags to assign to the resource.

VirtualInterfaceId string

The ID of the Direct Connect virtual interface to accept.

Arn string

The ARN of the virtual interface.

DxGatewayId string

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

Tags map[string]string

A map of tags to assign to the resource.

VirtualInterfaceId string

The ID of the Direct Connect virtual interface to accept.

arn string

The ARN of the virtual interface.

dxGatewayId string

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

tags {[key: string]: string}

A map of tags to assign to the resource.

virtualInterfaceId string

The ID of the Direct Connect virtual interface to accept.

arn str

The ARN of the virtual interface.

dx_gateway_id str

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

tags Dict[str, str]

A map of tags to assign to the resource.

virtual_interface_id str

The ID of the Direct Connect virtual interface to accept.

Package Details

Repository
https://github.com/pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.