1. Packages
  2. Aviatrix
  3. API Docs
  4. AviatrixAwsTgwConnectPeer
Aviatrix v0.0.11 published on Saturday, Jun 17, 2023 by Aviatrix

aviatrix.AviatrixAwsTgwConnectPeer

Explore with Pulumi AI

The aviatrix_aws_tgw_connect_peer resource allows the creation and management of AWS TGW Connect peers. This resource is available as of provider version R2.18.1+.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Aviatrix = Pulumi.Aviatrix;

return await Deployment.RunAsync(() => 
{
    // Create an Aviatrix AWS TGW Connect Peer
    var test = new Aviatrix.AviatrixAwsTgwConnectPeer("test", new()
    {
        TgwName = aviatrix_aws_tgw.Test_aws_tgw.Tgw_name,
        ConnectionName = aviatrix_aws_tgw_connect.Test_aws_tgw_connect.Connection_name,
        ConnectPeerName = "connect-peer-test",
        ConnectAttachmentId = aviatrix_aws_tgw_connect.Test_aws_tgw_connect.Connect_attachment_id,
        PeerAsNumber = "65001",
        PeerGreAddress = "172.31.1.11",
        BgpInsideCidrs = new[]
        {
            "169.254.6.0/29",
        },
        TgwGreAddress = "10.0.0.32",
    });

});
Copy
package main

import (
	"github.com/astipkovits/pulumi-aviatrix/sdk/go/aviatrix"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := aviatrix.NewAviatrixAwsTgwConnectPeer(ctx, "test", &aviatrix.AviatrixAwsTgwConnectPeerArgs{
			TgwName:             pulumi.Any(aviatrix_aws_tgw.Test_aws_tgw.Tgw_name),
			ConnectionName:      pulumi.Any(aviatrix_aws_tgw_connect.Test_aws_tgw_connect.Connection_name),
			ConnectPeerName:     pulumi.String("connect-peer-test"),
			ConnectAttachmentId: pulumi.Any(aviatrix_aws_tgw_connect.Test_aws_tgw_connect.Connect_attachment_id),
			PeerAsNumber:        pulumi.String("65001"),
			PeerGreAddress:      pulumi.String("172.31.1.11"),
			BgpInsideCidrs: pulumi.StringArray{
				pulumi.String("169.254.6.0/29"),
			},
			TgwGreAddress: pulumi.String("10.0.0.32"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aviatrix.AviatrixAwsTgwConnectPeer;
import com.pulumi.aviatrix.AviatrixAwsTgwConnectPeerArgs;
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 test = new AviatrixAwsTgwConnectPeer("test", AviatrixAwsTgwConnectPeerArgs.builder()        
            .tgwName(aviatrix_aws_tgw.test_aws_tgw().tgw_name())
            .connectionName(aviatrix_aws_tgw_connect.test_aws_tgw_connect().connection_name())
            .connectPeerName("connect-peer-test")
            .connectAttachmentId(aviatrix_aws_tgw_connect.test_aws_tgw_connect().connect_attachment_id())
            .peerAsNumber("65001")
            .peerGreAddress("172.31.1.11")
            .bgpInsideCidrs("169.254.6.0/29")
            .tgwGreAddress("10.0.0.32")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as aviatrix from "@astipkovits/aviatrix";

// Create an Aviatrix AWS TGW Connect Peer
const test = new aviatrix.AviatrixAwsTgwConnectPeer("test", {
    tgwName: aviatrix_aws_tgw.test_aws_tgw.tgw_name,
    connectionName: aviatrix_aws_tgw_connect.test_aws_tgw_connect.connection_name,
    connectPeerName: "connect-peer-test",
    connectAttachmentId: aviatrix_aws_tgw_connect.test_aws_tgw_connect.connect_attachment_id,
    peerAsNumber: "65001",
    peerGreAddress: "172.31.1.11",
    bgpInsideCidrs: ["169.254.6.0/29"],
    tgwGreAddress: "10.0.0.32",
});
Copy
import pulumi
import pulumi_aviatrix as aviatrix

# Create an Aviatrix AWS TGW Connect Peer
test = aviatrix.AviatrixAwsTgwConnectPeer("test",
    tgw_name=aviatrix_aws_tgw["test_aws_tgw"]["tgw_name"],
    connection_name=aviatrix_aws_tgw_connect["test_aws_tgw_connect"]["connection_name"],
    connect_peer_name="connect-peer-test",
    connect_attachment_id=aviatrix_aws_tgw_connect["test_aws_tgw_connect"]["connect_attachment_id"],
    peer_as_number="65001",
    peer_gre_address="172.31.1.11",
    bgp_inside_cidrs=["169.254.6.0/29"],
    tgw_gre_address="10.0.0.32")
Copy
resources:
  # Create an Aviatrix AWS TGW Connect Peer
  test:
    type: aviatrix:AviatrixAwsTgwConnectPeer
    properties:
      tgwName: ${aviatrix_aws_tgw.test_aws_tgw.tgw_name}
      connectionName: ${aviatrix_aws_tgw_connect.test_aws_tgw_connect.connection_name}
      connectPeerName: connect-peer-test
      connectAttachmentId: ${aviatrix_aws_tgw_connect.test_aws_tgw_connect.connect_attachment_id}
      peerAsNumber: '65001'
      peerGreAddress: 172.31.1.11
      bgpInsideCidrs:
        - 169.254.6.0/29
      tgwGreAddress: 10.0.0.32
Copy

Create AviatrixAwsTgwConnectPeer Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new AviatrixAwsTgwConnectPeer(name: string, args: AviatrixAwsTgwConnectPeerArgs, opts?: CustomResourceOptions);
@overload
def AviatrixAwsTgwConnectPeer(resource_name: str,
                              args: AviatrixAwsTgwConnectPeerArgs,
                              opts: Optional[ResourceOptions] = None)

@overload
def AviatrixAwsTgwConnectPeer(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              bgp_inside_cidrs: Optional[Sequence[str]] = None,
                              connect_attachment_id: Optional[str] = None,
                              connect_peer_name: Optional[str] = None,
                              connection_name: Optional[str] = None,
                              peer_as_number: Optional[str] = None,
                              peer_gre_address: Optional[str] = None,
                              tgw_name: Optional[str] = None,
                              tgw_gre_address: Optional[str] = None)
func NewAviatrixAwsTgwConnectPeer(ctx *Context, name string, args AviatrixAwsTgwConnectPeerArgs, opts ...ResourceOption) (*AviatrixAwsTgwConnectPeer, error)
public AviatrixAwsTgwConnectPeer(string name, AviatrixAwsTgwConnectPeerArgs args, CustomResourceOptions? opts = null)
public AviatrixAwsTgwConnectPeer(String name, AviatrixAwsTgwConnectPeerArgs args)
public AviatrixAwsTgwConnectPeer(String name, AviatrixAwsTgwConnectPeerArgs args, CustomResourceOptions options)
type: aviatrix:AviatrixAwsTgwConnectPeer
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AviatrixAwsTgwConnectPeerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AviatrixAwsTgwConnectPeerArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AviatrixAwsTgwConnectPeerArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AviatrixAwsTgwConnectPeerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AviatrixAwsTgwConnectPeerArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var aviatrixAwsTgwConnectPeerResource = new Aviatrix.AviatrixAwsTgwConnectPeer("aviatrixAwsTgwConnectPeerResource", new()
{
    BgpInsideCidrs = new[]
    {
        "string",
    },
    ConnectAttachmentId = "string",
    ConnectPeerName = "string",
    ConnectionName = "string",
    PeerAsNumber = "string",
    PeerGreAddress = "string",
    TgwName = "string",
    TgwGreAddress = "string",
});
Copy
example, err := aviatrix.NewAviatrixAwsTgwConnectPeer(ctx, "aviatrixAwsTgwConnectPeerResource", &aviatrix.AviatrixAwsTgwConnectPeerArgs{
	BgpInsideCidrs: pulumi.StringArray{
		pulumi.String("string"),
	},
	ConnectAttachmentId: pulumi.String("string"),
	ConnectPeerName:     pulumi.String("string"),
	ConnectionName:      pulumi.String("string"),
	PeerAsNumber:        pulumi.String("string"),
	PeerGreAddress:      pulumi.String("string"),
	TgwName:             pulumi.String("string"),
	TgwGreAddress:       pulumi.String("string"),
})
Copy
var aviatrixAwsTgwConnectPeerResource = new AviatrixAwsTgwConnectPeer("aviatrixAwsTgwConnectPeerResource", AviatrixAwsTgwConnectPeerArgs.builder()
    .bgpInsideCidrs("string")
    .connectAttachmentId("string")
    .connectPeerName("string")
    .connectionName("string")
    .peerAsNumber("string")
    .peerGreAddress("string")
    .tgwName("string")
    .tgwGreAddress("string")
    .build());
Copy
aviatrix_aws_tgw_connect_peer_resource = aviatrix.AviatrixAwsTgwConnectPeer("aviatrixAwsTgwConnectPeerResource",
    bgp_inside_cidrs=["string"],
    connect_attachment_id="string",
    connect_peer_name="string",
    connection_name="string",
    peer_as_number="string",
    peer_gre_address="string",
    tgw_name="string",
    tgw_gre_address="string")
Copy
const aviatrixAwsTgwConnectPeerResource = new aviatrix.AviatrixAwsTgwConnectPeer("aviatrixAwsTgwConnectPeerResource", {
    bgpInsideCidrs: ["string"],
    connectAttachmentId: "string",
    connectPeerName: "string",
    connectionName: "string",
    peerAsNumber: "string",
    peerGreAddress: "string",
    tgwName: "string",
    tgwGreAddress: "string",
});
Copy
type: aviatrix:AviatrixAwsTgwConnectPeer
properties:
    bgpInsideCidrs:
        - string
    connectAttachmentId: string
    connectPeerName: string
    connectionName: string
    peerAsNumber: string
    peerGreAddress: string
    tgwGreAddress: string
    tgwName: string
Copy

AviatrixAwsTgwConnectPeer Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The AviatrixAwsTgwConnectPeer resource accepts the following input properties:

BgpInsideCidrs
This property is required.
Changes to this property will trigger replacement.
List<string>
Set of BGP Inside CIDR Block(s).
ConnectAttachmentId
This property is required.
Changes to this property will trigger replacement.
string
Connect Attachment ID.
ConnectPeerName
This property is required.
Changes to this property will trigger replacement.
string
TGW Connect peer name.
ConnectionName
This property is required.
Changes to this property will trigger replacement.
string
TGW Connect connection name.
PeerAsNumber
This property is required.
Changes to this property will trigger replacement.
string
Peer AS Number.
PeerGreAddress
This property is required.
Changes to this property will trigger replacement.
string
Peer GRE IP Address.
TgwName
This property is required.
Changes to this property will trigger replacement.
string
AWS TGW name.
TgwGreAddress Changes to this property will trigger replacement. string
AWS TGW GRE IP Address.
BgpInsideCidrs
This property is required.
Changes to this property will trigger replacement.
[]string
Set of BGP Inside CIDR Block(s).
ConnectAttachmentId
This property is required.
Changes to this property will trigger replacement.
string
Connect Attachment ID.
ConnectPeerName
This property is required.
Changes to this property will trigger replacement.
string
TGW Connect peer name.
ConnectionName
This property is required.
Changes to this property will trigger replacement.
string
TGW Connect connection name.
PeerAsNumber
This property is required.
Changes to this property will trigger replacement.
string
Peer AS Number.
PeerGreAddress
This property is required.
Changes to this property will trigger replacement.
string
Peer GRE IP Address.
TgwName
This property is required.
Changes to this property will trigger replacement.
string
AWS TGW name.
TgwGreAddress Changes to this property will trigger replacement. string
AWS TGW GRE IP Address.
bgpInsideCidrs
This property is required.
Changes to this property will trigger replacement.
List<String>
Set of BGP Inside CIDR Block(s).
connectAttachmentId
This property is required.
Changes to this property will trigger replacement.
String
Connect Attachment ID.
connectPeerName
This property is required.
Changes to this property will trigger replacement.
String
TGW Connect peer name.
connectionName
This property is required.
Changes to this property will trigger replacement.
String
TGW Connect connection name.
peerAsNumber
This property is required.
Changes to this property will trigger replacement.
String
Peer AS Number.
peerGreAddress
This property is required.
Changes to this property will trigger replacement.
String
Peer GRE IP Address.
tgwName
This property is required.
Changes to this property will trigger replacement.
String
AWS TGW name.
tgwGreAddress Changes to this property will trigger replacement. String
AWS TGW GRE IP Address.
bgpInsideCidrs
This property is required.
Changes to this property will trigger replacement.
string[]
Set of BGP Inside CIDR Block(s).
connectAttachmentId
This property is required.
Changes to this property will trigger replacement.
string
Connect Attachment ID.
connectPeerName
This property is required.
Changes to this property will trigger replacement.
string
TGW Connect peer name.
connectionName
This property is required.
Changes to this property will trigger replacement.
string
TGW Connect connection name.
peerAsNumber
This property is required.
Changes to this property will trigger replacement.
string
Peer AS Number.
peerGreAddress
This property is required.
Changes to this property will trigger replacement.
string
Peer GRE IP Address.
tgwName
This property is required.
Changes to this property will trigger replacement.
string
AWS TGW name.
tgwGreAddress Changes to this property will trigger replacement. string
AWS TGW GRE IP Address.
bgp_inside_cidrs
This property is required.
Changes to this property will trigger replacement.
Sequence[str]
Set of BGP Inside CIDR Block(s).
connect_attachment_id
This property is required.
Changes to this property will trigger replacement.
str
Connect Attachment ID.
connect_peer_name
This property is required.
Changes to this property will trigger replacement.
str
TGW Connect peer name.
connection_name
This property is required.
Changes to this property will trigger replacement.
str
TGW Connect connection name.
peer_as_number
This property is required.
Changes to this property will trigger replacement.
str
Peer AS Number.
peer_gre_address
This property is required.
Changes to this property will trigger replacement.
str
Peer GRE IP Address.
tgw_name
This property is required.
Changes to this property will trigger replacement.
str
AWS TGW name.
tgw_gre_address Changes to this property will trigger replacement. str
AWS TGW GRE IP Address.
bgpInsideCidrs
This property is required.
Changes to this property will trigger replacement.
List<String>
Set of BGP Inside CIDR Block(s).
connectAttachmentId
This property is required.
Changes to this property will trigger replacement.
String
Connect Attachment ID.
connectPeerName
This property is required.
Changes to this property will trigger replacement.
String
TGW Connect peer name.
connectionName
This property is required.
Changes to this property will trigger replacement.
String
TGW Connect connection name.
peerAsNumber
This property is required.
Changes to this property will trigger replacement.
String
Peer AS Number.
peerGreAddress
This property is required.
Changes to this property will trigger replacement.
String
Peer GRE IP Address.
tgwName
This property is required.
Changes to this property will trigger replacement.
String
AWS TGW name.
tgwGreAddress Changes to this property will trigger replacement. String
AWS TGW GRE IP Address.

Outputs

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

ConnectPeerId string
Connect Peer ID.
Id string
The provider-assigned unique ID for this managed resource.
ConnectPeerId string
Connect Peer ID.
Id string
The provider-assigned unique ID for this managed resource.
connectPeerId String
Connect Peer ID.
id String
The provider-assigned unique ID for this managed resource.
connectPeerId string
Connect Peer ID.
id string
The provider-assigned unique ID for this managed resource.
connect_peer_id str
Connect Peer ID.
id str
The provider-assigned unique ID for this managed resource.
connectPeerId String
Connect Peer ID.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing AviatrixAwsTgwConnectPeer Resource

Get an existing AviatrixAwsTgwConnectPeer 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?: AviatrixAwsTgwConnectPeerState, opts?: CustomResourceOptions): AviatrixAwsTgwConnectPeer
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bgp_inside_cidrs: Optional[Sequence[str]] = None,
        connect_attachment_id: Optional[str] = None,
        connect_peer_id: Optional[str] = None,
        connect_peer_name: Optional[str] = None,
        connection_name: Optional[str] = None,
        peer_as_number: Optional[str] = None,
        peer_gre_address: Optional[str] = None,
        tgw_gre_address: Optional[str] = None,
        tgw_name: Optional[str] = None) -> AviatrixAwsTgwConnectPeer
func GetAviatrixAwsTgwConnectPeer(ctx *Context, name string, id IDInput, state *AviatrixAwsTgwConnectPeerState, opts ...ResourceOption) (*AviatrixAwsTgwConnectPeer, error)
public static AviatrixAwsTgwConnectPeer Get(string name, Input<string> id, AviatrixAwsTgwConnectPeerState? state, CustomResourceOptions? opts = null)
public static AviatrixAwsTgwConnectPeer get(String name, Output<String> id, AviatrixAwsTgwConnectPeerState state, CustomResourceOptions options)
resources:  _:    type: aviatrix:AviatrixAwsTgwConnectPeer    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
BgpInsideCidrs Changes to this property will trigger replacement. List<string>
Set of BGP Inside CIDR Block(s).
ConnectAttachmentId Changes to this property will trigger replacement. string
Connect Attachment ID.
ConnectPeerId string
Connect Peer ID.
ConnectPeerName Changes to this property will trigger replacement. string
TGW Connect peer name.
ConnectionName Changes to this property will trigger replacement. string
TGW Connect connection name.
PeerAsNumber Changes to this property will trigger replacement. string
Peer AS Number.
PeerGreAddress Changes to this property will trigger replacement. string
Peer GRE IP Address.
TgwGreAddress Changes to this property will trigger replacement. string
AWS TGW GRE IP Address.
TgwName Changes to this property will trigger replacement. string
AWS TGW name.
BgpInsideCidrs Changes to this property will trigger replacement. []string
Set of BGP Inside CIDR Block(s).
ConnectAttachmentId Changes to this property will trigger replacement. string
Connect Attachment ID.
ConnectPeerId string
Connect Peer ID.
ConnectPeerName Changes to this property will trigger replacement. string
TGW Connect peer name.
ConnectionName Changes to this property will trigger replacement. string
TGW Connect connection name.
PeerAsNumber Changes to this property will trigger replacement. string
Peer AS Number.
PeerGreAddress Changes to this property will trigger replacement. string
Peer GRE IP Address.
TgwGreAddress Changes to this property will trigger replacement. string
AWS TGW GRE IP Address.
TgwName Changes to this property will trigger replacement. string
AWS TGW name.
bgpInsideCidrs Changes to this property will trigger replacement. List<String>
Set of BGP Inside CIDR Block(s).
connectAttachmentId Changes to this property will trigger replacement. String
Connect Attachment ID.
connectPeerId String
Connect Peer ID.
connectPeerName Changes to this property will trigger replacement. String
TGW Connect peer name.
connectionName Changes to this property will trigger replacement. String
TGW Connect connection name.
peerAsNumber Changes to this property will trigger replacement. String
Peer AS Number.
peerGreAddress Changes to this property will trigger replacement. String
Peer GRE IP Address.
tgwGreAddress Changes to this property will trigger replacement. String
AWS TGW GRE IP Address.
tgwName Changes to this property will trigger replacement. String
AWS TGW name.
bgpInsideCidrs Changes to this property will trigger replacement. string[]
Set of BGP Inside CIDR Block(s).
connectAttachmentId Changes to this property will trigger replacement. string
Connect Attachment ID.
connectPeerId string
Connect Peer ID.
connectPeerName Changes to this property will trigger replacement. string
TGW Connect peer name.
connectionName Changes to this property will trigger replacement. string
TGW Connect connection name.
peerAsNumber Changes to this property will trigger replacement. string
Peer AS Number.
peerGreAddress Changes to this property will trigger replacement. string
Peer GRE IP Address.
tgwGreAddress Changes to this property will trigger replacement. string
AWS TGW GRE IP Address.
tgwName Changes to this property will trigger replacement. string
AWS TGW name.
bgp_inside_cidrs Changes to this property will trigger replacement. Sequence[str]
Set of BGP Inside CIDR Block(s).
connect_attachment_id Changes to this property will trigger replacement. str
Connect Attachment ID.
connect_peer_id str
Connect Peer ID.
connect_peer_name Changes to this property will trigger replacement. str
TGW Connect peer name.
connection_name Changes to this property will trigger replacement. str
TGW Connect connection name.
peer_as_number Changes to this property will trigger replacement. str
Peer AS Number.
peer_gre_address Changes to this property will trigger replacement. str
Peer GRE IP Address.
tgw_gre_address Changes to this property will trigger replacement. str
AWS TGW GRE IP Address.
tgw_name Changes to this property will trigger replacement. str
AWS TGW name.
bgpInsideCidrs Changes to this property will trigger replacement. List<String>
Set of BGP Inside CIDR Block(s).
connectAttachmentId Changes to this property will trigger replacement. String
Connect Attachment ID.
connectPeerId String
Connect Peer ID.
connectPeerName Changes to this property will trigger replacement. String
TGW Connect peer name.
connectionName Changes to this property will trigger replacement. String
TGW Connect connection name.
peerAsNumber Changes to this property will trigger replacement. String
Peer AS Number.
peerGreAddress Changes to this property will trigger replacement. String
Peer GRE IP Address.
tgwGreAddress Changes to this property will trigger replacement. String
AWS TGW GRE IP Address.
tgwName Changes to this property will trigger replacement. String
AWS TGW name.

Import

aws_tgw_connect_peer can be imported using the tgw_name, connection_name and connect_peer_name, e.g.

 $ pulumi import aviatrix:index/aviatrixAwsTgwConnectPeer:AviatrixAwsTgwConnectPeer test tgw_name~~connection_name~~connect_peer_name
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
aviatrix astipkovits/pulumi-aviatrix
License
Apache-2.0
Notes
This Pulumi package is based on the aviatrix Terraform Provider.