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

aviatrix.AviatrixEdgeSpokeExternalDeviceConn

Explore with Pulumi AI

The aviatrix_edge_spoke_external_device_conn resource creates and manages the connection between Edge as a Spoke and an External Device. This resource is available as of provider version R2.23+.

Example Usage

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

return await Deployment.RunAsync(() => 
{
    // Create an Edge as a Spoke External Device Connection
    var test = new Aviatrix.AviatrixEdgeSpokeExternalDeviceConn("test", new()
    {
        BgpLocalAsNum = "123",
        BgpRemoteAsNum = "345",
        ConnectionName = "conn",
        GwName = "eaas",
        LocalLanIp = "10.230.3.23",
        RemoteLanIp = "10.0.60.1",
        SiteId = "site-abcd1234",
    });

});
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.NewAviatrixEdgeSpokeExternalDeviceConn(ctx, "test", &aviatrix.AviatrixEdgeSpokeExternalDeviceConnArgs{
			BgpLocalAsNum:  pulumi.String("123"),
			BgpRemoteAsNum: pulumi.String("345"),
			ConnectionName: pulumi.String("conn"),
			GwName:         pulumi.String("eaas"),
			LocalLanIp:     pulumi.String("10.230.3.23"),
			RemoteLanIp:    pulumi.String("10.0.60.1"),
			SiteId:         pulumi.String("site-abcd1234"),
		})
		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.AviatrixEdgeSpokeExternalDeviceConn;
import com.pulumi.aviatrix.AviatrixEdgeSpokeExternalDeviceConnArgs;
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 AviatrixEdgeSpokeExternalDeviceConn("test", AviatrixEdgeSpokeExternalDeviceConnArgs.builder()        
            .bgpLocalAsNum("123")
            .bgpRemoteAsNum("345")
            .connectionName("conn")
            .gwName("eaas")
            .localLanIp("10.230.3.23")
            .remoteLanIp("10.0.60.1")
            .siteId("site-abcd1234")
            .build());

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

// Create an Edge as a Spoke External Device Connection
const test = new aviatrix.AviatrixEdgeSpokeExternalDeviceConn("test", {
    bgpLocalAsNum: "123",
    bgpRemoteAsNum: "345",
    connectionName: "conn",
    gwName: "eaas",
    localLanIp: "10.230.3.23",
    remoteLanIp: "10.0.60.1",
    siteId: "site-abcd1234",
});
Copy
import pulumi
import pulumi_aviatrix as aviatrix

# Create an Edge as a Spoke External Device Connection
test = aviatrix.AviatrixEdgeSpokeExternalDeviceConn("test",
    bgp_local_as_num="123",
    bgp_remote_as_num="345",
    connection_name="conn",
    gw_name="eaas",
    local_lan_ip="10.230.3.23",
    remote_lan_ip="10.0.60.1",
    site_id="site-abcd1234")
Copy
resources:
  # Create an Edge as a Spoke External Device Connection
  test:
    type: aviatrix:AviatrixEdgeSpokeExternalDeviceConn
    properties:
      bgpLocalAsNum: '123'
      bgpRemoteAsNum: '345'
      connectionName: conn
      gwName: eaas
      localLanIp: 10.230.3.23
      remoteLanIp: 10.0.60.1
      siteId: site-abcd1234
Copy

Create AviatrixEdgeSpokeExternalDeviceConn Resource

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

Constructor syntax

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

@overload
def AviatrixEdgeSpokeExternalDeviceConn(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        bgp_local_as_num: Optional[str] = None,
                                        bgp_remote_as_num: Optional[str] = None,
                                        connection_name: Optional[str] = None,
                                        gw_name: Optional[str] = None,
                                        local_lan_ip: Optional[str] = None,
                                        remote_lan_ip: Optional[str] = None,
                                        site_id: Optional[str] = None,
                                        connection_type: Optional[str] = None,
                                        tunnel_protocol: Optional[str] = None)
func NewAviatrixEdgeSpokeExternalDeviceConn(ctx *Context, name string, args AviatrixEdgeSpokeExternalDeviceConnArgs, opts ...ResourceOption) (*AviatrixEdgeSpokeExternalDeviceConn, error)
public AviatrixEdgeSpokeExternalDeviceConn(string name, AviatrixEdgeSpokeExternalDeviceConnArgs args, CustomResourceOptions? opts = null)
public AviatrixEdgeSpokeExternalDeviceConn(String name, AviatrixEdgeSpokeExternalDeviceConnArgs args)
public AviatrixEdgeSpokeExternalDeviceConn(String name, AviatrixEdgeSpokeExternalDeviceConnArgs args, CustomResourceOptions options)
type: aviatrix:AviatrixEdgeSpokeExternalDeviceConn
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. AviatrixEdgeSpokeExternalDeviceConnArgs
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. AviatrixEdgeSpokeExternalDeviceConnArgs
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. AviatrixEdgeSpokeExternalDeviceConnArgs
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. AviatrixEdgeSpokeExternalDeviceConnArgs
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. AviatrixEdgeSpokeExternalDeviceConnArgs
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 aviatrixEdgeSpokeExternalDeviceConnResource = new Aviatrix.AviatrixEdgeSpokeExternalDeviceConn("aviatrixEdgeSpokeExternalDeviceConnResource", new()
{
    BgpLocalAsNum = "string",
    BgpRemoteAsNum = "string",
    ConnectionName = "string",
    GwName = "string",
    LocalLanIp = "string",
    RemoteLanIp = "string",
    SiteId = "string",
    ConnectionType = "string",
    TunnelProtocol = "string",
});
Copy
example, err := aviatrix.NewAviatrixEdgeSpokeExternalDeviceConn(ctx, "aviatrixEdgeSpokeExternalDeviceConnResource", &aviatrix.AviatrixEdgeSpokeExternalDeviceConnArgs{
	BgpLocalAsNum:  pulumi.String("string"),
	BgpRemoteAsNum: pulumi.String("string"),
	ConnectionName: pulumi.String("string"),
	GwName:         pulumi.String("string"),
	LocalLanIp:     pulumi.String("string"),
	RemoteLanIp:    pulumi.String("string"),
	SiteId:         pulumi.String("string"),
	ConnectionType: pulumi.String("string"),
	TunnelProtocol: pulumi.String("string"),
})
Copy
var aviatrixEdgeSpokeExternalDeviceConnResource = new AviatrixEdgeSpokeExternalDeviceConn("aviatrixEdgeSpokeExternalDeviceConnResource", AviatrixEdgeSpokeExternalDeviceConnArgs.builder()
    .bgpLocalAsNum("string")
    .bgpRemoteAsNum("string")
    .connectionName("string")
    .gwName("string")
    .localLanIp("string")
    .remoteLanIp("string")
    .siteId("string")
    .connectionType("string")
    .tunnelProtocol("string")
    .build());
Copy
aviatrix_edge_spoke_external_device_conn_resource = aviatrix.AviatrixEdgeSpokeExternalDeviceConn("aviatrixEdgeSpokeExternalDeviceConnResource",
    bgp_local_as_num="string",
    bgp_remote_as_num="string",
    connection_name="string",
    gw_name="string",
    local_lan_ip="string",
    remote_lan_ip="string",
    site_id="string",
    connection_type="string",
    tunnel_protocol="string")
Copy
const aviatrixEdgeSpokeExternalDeviceConnResource = new aviatrix.AviatrixEdgeSpokeExternalDeviceConn("aviatrixEdgeSpokeExternalDeviceConnResource", {
    bgpLocalAsNum: "string",
    bgpRemoteAsNum: "string",
    connectionName: "string",
    gwName: "string",
    localLanIp: "string",
    remoteLanIp: "string",
    siteId: "string",
    connectionType: "string",
    tunnelProtocol: "string",
});
Copy
type: aviatrix:AviatrixEdgeSpokeExternalDeviceConn
properties:
    bgpLocalAsNum: string
    bgpRemoteAsNum: string
    connectionName: string
    connectionType: string
    gwName: string
    localLanIp: string
    remoteLanIp: string
    siteId: string
    tunnelProtocol: string
Copy

AviatrixEdgeSpokeExternalDeviceConn 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 AviatrixEdgeSpokeExternalDeviceConn resource accepts the following input properties:

BgpLocalAsNum
This property is required.
Changes to this property will trigger replacement.
string
BGP local AS number.
BgpRemoteAsNum
This property is required.
Changes to this property will trigger replacement.
string
BGP remote AS number.
ConnectionName
This property is required.
Changes to this property will trigger replacement.
string
Connection name.
GwName
This property is required.
Changes to this property will trigger replacement.
string
Edge as a Spoke name.
LocalLanIp
This property is required.
Changes to this property will trigger replacement.
string
Local LAN IP.
RemoteLanIp
This property is required.
Changes to this property will trigger replacement.
string
Remote LAN IP.
SiteId
This property is required.
Changes to this property will trigger replacement.
string
Edge as a Spoke site iD.
ConnectionType Changes to this property will trigger replacement. string
Connection type. Valid value: 'bgp'. Default value: 'bgp'.
TunnelProtocol Changes to this property will trigger replacement. string
Tunnel protocol. Valid value: 'LAN'. Default value: 'LAN'. Case insensitive.
BgpLocalAsNum
This property is required.
Changes to this property will trigger replacement.
string
BGP local AS number.
BgpRemoteAsNum
This property is required.
Changes to this property will trigger replacement.
string
BGP remote AS number.
ConnectionName
This property is required.
Changes to this property will trigger replacement.
string
Connection name.
GwName
This property is required.
Changes to this property will trigger replacement.
string
Edge as a Spoke name.
LocalLanIp
This property is required.
Changes to this property will trigger replacement.
string
Local LAN IP.
RemoteLanIp
This property is required.
Changes to this property will trigger replacement.
string
Remote LAN IP.
SiteId
This property is required.
Changes to this property will trigger replacement.
string
Edge as a Spoke site iD.
ConnectionType Changes to this property will trigger replacement. string
Connection type. Valid value: 'bgp'. Default value: 'bgp'.
TunnelProtocol Changes to this property will trigger replacement. string
Tunnel protocol. Valid value: 'LAN'. Default value: 'LAN'. Case insensitive.
bgpLocalAsNum
This property is required.
Changes to this property will trigger replacement.
String
BGP local AS number.
bgpRemoteAsNum
This property is required.
Changes to this property will trigger replacement.
String
BGP remote AS number.
connectionName
This property is required.
Changes to this property will trigger replacement.
String
Connection name.
gwName
This property is required.
Changes to this property will trigger replacement.
String
Edge as a Spoke name.
localLanIp
This property is required.
Changes to this property will trigger replacement.
String
Local LAN IP.
remoteLanIp
This property is required.
Changes to this property will trigger replacement.
String
Remote LAN IP.
siteId
This property is required.
Changes to this property will trigger replacement.
String
Edge as a Spoke site iD.
connectionType Changes to this property will trigger replacement. String
Connection type. Valid value: 'bgp'. Default value: 'bgp'.
tunnelProtocol Changes to this property will trigger replacement. String
Tunnel protocol. Valid value: 'LAN'. Default value: 'LAN'. Case insensitive.
bgpLocalAsNum
This property is required.
Changes to this property will trigger replacement.
string
BGP local AS number.
bgpRemoteAsNum
This property is required.
Changes to this property will trigger replacement.
string
BGP remote AS number.
connectionName
This property is required.
Changes to this property will trigger replacement.
string
Connection name.
gwName
This property is required.
Changes to this property will trigger replacement.
string
Edge as a Spoke name.
localLanIp
This property is required.
Changes to this property will trigger replacement.
string
Local LAN IP.
remoteLanIp
This property is required.
Changes to this property will trigger replacement.
string
Remote LAN IP.
siteId
This property is required.
Changes to this property will trigger replacement.
string
Edge as a Spoke site iD.
connectionType Changes to this property will trigger replacement. string
Connection type. Valid value: 'bgp'. Default value: 'bgp'.
tunnelProtocol Changes to this property will trigger replacement. string
Tunnel protocol. Valid value: 'LAN'. Default value: 'LAN'. Case insensitive.
bgp_local_as_num
This property is required.
Changes to this property will trigger replacement.
str
BGP local AS number.
bgp_remote_as_num
This property is required.
Changes to this property will trigger replacement.
str
BGP remote AS number.
connection_name
This property is required.
Changes to this property will trigger replacement.
str
Connection name.
gw_name
This property is required.
Changes to this property will trigger replacement.
str
Edge as a Spoke name.
local_lan_ip
This property is required.
Changes to this property will trigger replacement.
str
Local LAN IP.
remote_lan_ip
This property is required.
Changes to this property will trigger replacement.
str
Remote LAN IP.
site_id
This property is required.
Changes to this property will trigger replacement.
str
Edge as a Spoke site iD.
connection_type Changes to this property will trigger replacement. str
Connection type. Valid value: 'bgp'. Default value: 'bgp'.
tunnel_protocol Changes to this property will trigger replacement. str
Tunnel protocol. Valid value: 'LAN'. Default value: 'LAN'. Case insensitive.
bgpLocalAsNum
This property is required.
Changes to this property will trigger replacement.
String
BGP local AS number.
bgpRemoteAsNum
This property is required.
Changes to this property will trigger replacement.
String
BGP remote AS number.
connectionName
This property is required.
Changes to this property will trigger replacement.
String
Connection name.
gwName
This property is required.
Changes to this property will trigger replacement.
String
Edge as a Spoke name.
localLanIp
This property is required.
Changes to this property will trigger replacement.
String
Local LAN IP.
remoteLanIp
This property is required.
Changes to this property will trigger replacement.
String
Remote LAN IP.
siteId
This property is required.
Changes to this property will trigger replacement.
String
Edge as a Spoke site iD.
connectionType Changes to this property will trigger replacement. String
Connection type. Valid value: 'bgp'. Default value: 'bgp'.
tunnelProtocol Changes to this property will trigger replacement. String
Tunnel protocol. Valid value: 'LAN'. Default value: 'LAN'. Case insensitive.

Outputs

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

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

Look up Existing AviatrixEdgeSpokeExternalDeviceConn Resource

Get an existing AviatrixEdgeSpokeExternalDeviceConn 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?: AviatrixEdgeSpokeExternalDeviceConnState, opts?: CustomResourceOptions): AviatrixEdgeSpokeExternalDeviceConn
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bgp_local_as_num: Optional[str] = None,
        bgp_remote_as_num: Optional[str] = None,
        connection_name: Optional[str] = None,
        connection_type: Optional[str] = None,
        gw_name: Optional[str] = None,
        local_lan_ip: Optional[str] = None,
        remote_lan_ip: Optional[str] = None,
        site_id: Optional[str] = None,
        tunnel_protocol: Optional[str] = None) -> AviatrixEdgeSpokeExternalDeviceConn
func GetAviatrixEdgeSpokeExternalDeviceConn(ctx *Context, name string, id IDInput, state *AviatrixEdgeSpokeExternalDeviceConnState, opts ...ResourceOption) (*AviatrixEdgeSpokeExternalDeviceConn, error)
public static AviatrixEdgeSpokeExternalDeviceConn Get(string name, Input<string> id, AviatrixEdgeSpokeExternalDeviceConnState? state, CustomResourceOptions? opts = null)
public static AviatrixEdgeSpokeExternalDeviceConn get(String name, Output<String> id, AviatrixEdgeSpokeExternalDeviceConnState state, CustomResourceOptions options)
resources:  _:    type: aviatrix:AviatrixEdgeSpokeExternalDeviceConn    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:
BgpLocalAsNum Changes to this property will trigger replacement. string
BGP local AS number.
BgpRemoteAsNum Changes to this property will trigger replacement. string
BGP remote AS number.
ConnectionName Changes to this property will trigger replacement. string
Connection name.
ConnectionType Changes to this property will trigger replacement. string
Connection type. Valid value: 'bgp'. Default value: 'bgp'.
GwName Changes to this property will trigger replacement. string
Edge as a Spoke name.
LocalLanIp Changes to this property will trigger replacement. string
Local LAN IP.
RemoteLanIp Changes to this property will trigger replacement. string
Remote LAN IP.
SiteId Changes to this property will trigger replacement. string
Edge as a Spoke site iD.
TunnelProtocol Changes to this property will trigger replacement. string
Tunnel protocol. Valid value: 'LAN'. Default value: 'LAN'. Case insensitive.
BgpLocalAsNum Changes to this property will trigger replacement. string
BGP local AS number.
BgpRemoteAsNum Changes to this property will trigger replacement. string
BGP remote AS number.
ConnectionName Changes to this property will trigger replacement. string
Connection name.
ConnectionType Changes to this property will trigger replacement. string
Connection type. Valid value: 'bgp'. Default value: 'bgp'.
GwName Changes to this property will trigger replacement. string
Edge as a Spoke name.
LocalLanIp Changes to this property will trigger replacement. string
Local LAN IP.
RemoteLanIp Changes to this property will trigger replacement. string
Remote LAN IP.
SiteId Changes to this property will trigger replacement. string
Edge as a Spoke site iD.
TunnelProtocol Changes to this property will trigger replacement. string
Tunnel protocol. Valid value: 'LAN'. Default value: 'LAN'. Case insensitive.
bgpLocalAsNum Changes to this property will trigger replacement. String
BGP local AS number.
bgpRemoteAsNum Changes to this property will trigger replacement. String
BGP remote AS number.
connectionName Changes to this property will trigger replacement. String
Connection name.
connectionType Changes to this property will trigger replacement. String
Connection type. Valid value: 'bgp'. Default value: 'bgp'.
gwName Changes to this property will trigger replacement. String
Edge as a Spoke name.
localLanIp Changes to this property will trigger replacement. String
Local LAN IP.
remoteLanIp Changes to this property will trigger replacement. String
Remote LAN IP.
siteId Changes to this property will trigger replacement. String
Edge as a Spoke site iD.
tunnelProtocol Changes to this property will trigger replacement. String
Tunnel protocol. Valid value: 'LAN'. Default value: 'LAN'. Case insensitive.
bgpLocalAsNum Changes to this property will trigger replacement. string
BGP local AS number.
bgpRemoteAsNum Changes to this property will trigger replacement. string
BGP remote AS number.
connectionName Changes to this property will trigger replacement. string
Connection name.
connectionType Changes to this property will trigger replacement. string
Connection type. Valid value: 'bgp'. Default value: 'bgp'.
gwName Changes to this property will trigger replacement. string
Edge as a Spoke name.
localLanIp Changes to this property will trigger replacement. string
Local LAN IP.
remoteLanIp Changes to this property will trigger replacement. string
Remote LAN IP.
siteId Changes to this property will trigger replacement. string
Edge as a Spoke site iD.
tunnelProtocol Changes to this property will trigger replacement. string
Tunnel protocol. Valid value: 'LAN'. Default value: 'LAN'. Case insensitive.
bgp_local_as_num Changes to this property will trigger replacement. str
BGP local AS number.
bgp_remote_as_num Changes to this property will trigger replacement. str
BGP remote AS number.
connection_name Changes to this property will trigger replacement. str
Connection name.
connection_type Changes to this property will trigger replacement. str
Connection type. Valid value: 'bgp'. Default value: 'bgp'.
gw_name Changes to this property will trigger replacement. str
Edge as a Spoke name.
local_lan_ip Changes to this property will trigger replacement. str
Local LAN IP.
remote_lan_ip Changes to this property will trigger replacement. str
Remote LAN IP.
site_id Changes to this property will trigger replacement. str
Edge as a Spoke site iD.
tunnel_protocol Changes to this property will trigger replacement. str
Tunnel protocol. Valid value: 'LAN'. Default value: 'LAN'. Case insensitive.
bgpLocalAsNum Changes to this property will trigger replacement. String
BGP local AS number.
bgpRemoteAsNum Changes to this property will trigger replacement. String
BGP remote AS number.
connectionName Changes to this property will trigger replacement. String
Connection name.
connectionType Changes to this property will trigger replacement. String
Connection type. Valid value: 'bgp'. Default value: 'bgp'.
gwName Changes to this property will trigger replacement. String
Edge as a Spoke name.
localLanIp Changes to this property will trigger replacement. String
Local LAN IP.
remoteLanIp Changes to this property will trigger replacement. String
Remote LAN IP.
siteId Changes to this property will trigger replacement. String
Edge as a Spoke site iD.
tunnelProtocol Changes to this property will trigger replacement. String
Tunnel protocol. Valid value: 'LAN'. Default value: 'LAN'. Case insensitive.

Import

edge_spoke_external_device_conn can be imported using the connection_name and site_id, e.g.

 $ pulumi import aviatrix:index/aviatrixEdgeSpokeExternalDeviceConn:AviatrixEdgeSpokeExternalDeviceConn test connection_name~site_id
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.