HostedPrivateVirtualInterfaceAccepter
Provides a resource to manage the accepter’s side of a Direct Connect hosted private virtual interface. This resource accepts ownership of a private virtual interface created by another AWS account.
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.HostedPrivateVirtualInterface("creator", new Aws.DirectConnect.HostedPrivateVirtualInterfaceArgs
{
AddressFamily = "ipv4",
BgpAsn = 65352,
ConnectionId = "dxcon-zzzzzzzz",
OwnerAccountId = accepterCallerIdentity.Apply(accepterCallerIdentity => accepterCallerIdentity.AccountId),
Vlan = 4094,
}, new CustomResourceOptions
{
DependsOn =
{
"aws_vpn_gateway.vpn_gw",
},
});
// Accepter's side of the VIF.
var vpnGw = new Aws.Ec2.VpnGateway("vpnGw", new Aws.Ec2.VpnGatewayArgs
{
}, new CustomResourceOptions
{
Provider = "aws.accepter",
});
var accepterHostedPrivateVirtualInterfaceAccepter = new Aws.DirectConnect.HostedPrivateVirtualInterfaceAccepter("accepterHostedPrivateVirtualInterfaceAccepter", new Aws.DirectConnect.HostedPrivateVirtualInterfaceAccepterArgs
{
Tags =
{
{ "Side", "Accepter" },
},
VirtualInterfaceId = creator.Id,
VpnGatewayId = vpnGw.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/ec2"
"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.NewHostedPrivateVirtualInterface(ctx, "creator", &directconnect.HostedPrivateVirtualInterfaceArgs{
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_vpn_gateway.vpn_gw",
}))
if err != nil {
return err
}
vpnGw, err := ec2.NewVpnGateway(ctx, "vpnGw", nil, pulumi.Provider("aws.accepter"))
if err != nil {
return err
}
_, err = directconnect.NewHostedPrivateVirtualInterfaceAccepter(ctx, "accepterHostedPrivateVirtualInterfaceAccepter", &directconnect.HostedPrivateVirtualInterfaceAccepterArgs{
Tags: pulumi.StringMap{
"Side": pulumi.String("Accepter"),
},
VirtualInterfaceId: creator.ID(),
VpnGatewayId: vpnGw.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.HostedPrivateVirtualInterface("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_vpn_gateway.vpn_gw"]))
# Accepter's side of the VIF.
vpn_gw = aws.ec2.VpnGateway("vpnGw", opts=ResourceOptions(provider="aws.accepter"))
accepter_hosted_private_virtual_interface_accepter = aws.directconnect.HostedPrivateVirtualInterfaceAccepter("accepterHostedPrivateVirtualInterfaceAccepter",
tags={
"Side": "Accepter",
},
virtual_interface_id=creator.id,
vpn_gateway_id=vpn_gw.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 vpnGw = new aws.ec2.VpnGateway("vpn_gw", {}, { provider: accepter });
// Creator's side of the VIF
const creator = new aws.directconnect.HostedPrivateVirtualInterface("creator", {
addressFamily: "ipv4",
bgpAsn: 65352,
connectionId: "dxcon-zzzzzzzz",
ownerAccountId: accepterCallerIdentity.accountId,
vlan: 4094,
}, { dependsOn: [vpnGw] });
const accepterHostedPrivateVirtualInterfaceAccepter = new aws.directconnect.HostedPrivateVirtualInterfaceAccepter("accepter", {
tags: {
Side: "Accepter",
},
virtualInterfaceId: creator.id,
vpnGatewayId: vpnGw.id,
}, { provider: accepter });Create a HostedPrivateVirtualInterfaceAccepter Resource
new HostedPrivateVirtualInterfaceAccepter(name: string, args: HostedPrivateVirtualInterfaceAccepterArgs, opts?: CustomResourceOptions);def HostedPrivateVirtualInterfaceAccepter(resource_name, opts=None, dx_gateway_id=None, tags=None, virtual_interface_id=None, vpn_gateway_id=None, __props__=None);func NewHostedPrivateVirtualInterfaceAccepter(ctx *Context, name string, args HostedPrivateVirtualInterfaceAccepterArgs, opts ...ResourceOption) (*HostedPrivateVirtualInterfaceAccepter, error)public HostedPrivateVirtualInterfaceAccepter(string name, HostedPrivateVirtualInterfaceAccepterArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args HostedPrivateVirtualInterfaceAccepterArgs
- 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 HostedPrivateVirtualInterfaceAccepterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HostedPrivateVirtualInterfaceAccepterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
HostedPrivateVirtualInterfaceAccepter Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The HostedPrivateVirtualInterfaceAccepter resource accepts the following input properties:
- Virtual
Interface stringId The ID of the Direct Connect virtual interface to accept.
- Dx
Gateway stringId The ID of the Direct Connect gateway to which to connect the virtual interface.
- Dictionary<string, string>
A map of tags to assign to the resource.
- Vpn
Gateway stringId The ID of the virtual private gateway to which to connect the virtual interface.
- Virtual
Interface stringId The ID of the Direct Connect virtual interface to accept.
- Dx
Gateway stringId The ID of the Direct Connect gateway to which to connect the virtual interface.
- map[string]string
A map of tags to assign to the resource.
- Vpn
Gateway stringId The ID of the virtual private gateway to which to connect the virtual interface.
- virtual
Interface stringId The ID of the Direct Connect virtual interface to accept.
- dx
Gateway stringId The ID of the Direct Connect gateway to which to connect the virtual interface.
- {[key: string]: string}
A map of tags to assign to the resource.
- vpn
Gateway stringId The ID of the virtual private gateway to which to connect the virtual interface.
- virtual_
interface_ strid The ID of the Direct Connect virtual interface to accept.
- dx_
gateway_ strid The ID of the Direct Connect gateway to which to connect the virtual interface.
- Dict[str, str]
A map of tags to assign to the resource.
- vpn_
gateway_ strid The ID of the virtual private gateway to which to connect the virtual interface.
Outputs
All input properties are implicitly available as output properties. Additionally, the HostedPrivateVirtualInterfaceAccepter resource produces the following output properties:
Look up an Existing HostedPrivateVirtualInterfaceAccepter Resource
Get an existing HostedPrivateVirtualInterfaceAccepter resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: HostedPrivateVirtualInterfaceAccepterState, opts?: CustomResourceOptions): HostedPrivateVirtualInterfaceAccepterstatic get(resource_name, id, opts=None, arn=None, dx_gateway_id=None, tags=None, virtual_interface_id=None, vpn_gateway_id=None, __props__=None);func GetHostedPrivateVirtualInterfaceAccepter(ctx *Context, name string, id IDInput, state *HostedPrivateVirtualInterfaceAccepterState, opts ...ResourceOption) (*HostedPrivateVirtualInterfaceAccepter, error)public static HostedPrivateVirtualInterfaceAccepter Get(string name, Input<string> id, HostedPrivateVirtualInterfaceAccepterState? state, CustomResourceOptions? opts = null)- 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.
- Dx
Gateway stringId The ID of the Direct Connect gateway to which to connect the virtual interface.
- Dictionary<string, string>
A map of tags to assign to the resource.
- Virtual
Interface stringId The ID of the Direct Connect virtual interface to accept.
- Vpn
Gateway stringId The ID of the virtual private gateway to which to connect the virtual interface.
- Arn string
The ARN of the virtual interface.
- Dx
Gateway stringId The ID of the Direct Connect gateway to which to connect the virtual interface.
- map[string]string
A map of tags to assign to the resource.
- Virtual
Interface stringId The ID of the Direct Connect virtual interface to accept.
- Vpn
Gateway stringId The ID of the virtual private gateway to which to connect the virtual interface.
- arn string
The ARN of the virtual interface.
- dx
Gateway stringId The ID of the Direct Connect gateway to which to connect the virtual interface.
- {[key: string]: string}
A map of tags to assign to the resource.
- virtual
Interface stringId The ID of the Direct Connect virtual interface to accept.
- vpn
Gateway stringId The ID of the virtual private gateway to which to connect the virtual interface.
- arn str
The ARN of the virtual interface.
- dx_
gateway_ strid The ID of the Direct Connect gateway to which to connect the virtual interface.
- Dict[str, str]
A map of tags to assign to the resource.
- virtual_
interface_ strid The ID of the Direct Connect virtual interface to accept.
- vpn_
gateway_ strid The ID of the virtual private gateway to which to connect the virtual interface.
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.