Connect
Manages an EC2 Transit Gateway Connect.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.ec2transitgateway.VpcAttachment("example", {
subnetIds: [exampleAwsSubnet.id],
transitGatewayId: exampleAwsEc2TransitGateway.id,
vpcId: exampleAwsVpc.id,
});
const attachment = new aws.ec2transitgateway.Connect("attachment", {
transportAttachmentId: example.id,
transitGatewayId: exampleAwsEc2TransitGateway.id,
});Content copied to clipboard
import pulumi
import pulumi_aws as aws
example = aws.ec2transitgateway.VpcAttachment("example",
subnet_ids=[example_aws_subnet["id"]],
transit_gateway_id=example_aws_ec2_transit_gateway["id"],
vpc_id=example_aws_vpc["id"])
attachment = aws.ec2transitgateway.Connect("attachment",
transport_attachment_id=example.id,
transit_gateway_id=example_aws_ec2_transit_gateway["id"])Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Ec2TransitGateway.VpcAttachment("example", new()
{
SubnetIds = new[]
{
exampleAwsSubnet.Id,
},
TransitGatewayId = exampleAwsEc2TransitGateway.Id,
VpcId = exampleAwsVpc.Id,
});
var attachment = new Aws.Ec2TransitGateway.Connect("attachment", new()
{
TransportAttachmentId = example.Id,
TransitGatewayId = exampleAwsEc2TransitGateway.Id,
});
});Content copied to clipboard
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2transitgateway"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := ec2transitgateway.NewVpcAttachment(ctx, "example", &ec2transitgateway.VpcAttachmentArgs{
SubnetIds: pulumi.StringArray{
exampleAwsSubnet.Id,
},
TransitGatewayId: pulumi.Any(exampleAwsEc2TransitGateway.Id),
VpcId: pulumi.Any(exampleAwsVpc.Id),
})
if err != nil {
return err
}
_, err = ec2transitgateway.NewConnect(ctx, "attachment", &ec2transitgateway.ConnectArgs{
TransportAttachmentId: example.ID(),
TransitGatewayId: pulumi.Any(exampleAwsEc2TransitGateway.Id),
})
if err != nil {
return err
}
return nil
})
}Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ec2transitgateway.VpcAttachment;
import com.pulumi.aws.ec2transitgateway.VpcAttachmentArgs;
import com.pulumi.aws.ec2transitgateway.Connect;
import com.pulumi.aws.ec2transitgateway.ConnectArgs;
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 example = new VpcAttachment("example", VpcAttachmentArgs.builder()
.subnetIds(exampleAwsSubnet.id())
.transitGatewayId(exampleAwsEc2TransitGateway.id())
.vpcId(exampleAwsVpc.id())
.build());
var attachment = new Connect("attachment", ConnectArgs.builder()
.transportAttachmentId(example.id())
.transitGatewayId(exampleAwsEc2TransitGateway.id())
.build());
}
}Content copied to clipboard
resources:
example:
type: aws:ec2transitgateway:VpcAttachment
properties:
subnetIds:
- ${exampleAwsSubnet.id}
transitGatewayId: ${exampleAwsEc2TransitGateway.id}
vpcId: ${exampleAwsVpc.id}
attachment:
type: aws:ec2transitgateway:Connect
properties:
transportAttachmentId: ${example.id}
transitGatewayId: ${exampleAwsEc2TransitGateway.id}Content copied to clipboard
Import
Using pulumi import, import aws_ec2_transit_gateway_connect using the EC2 Transit Gateway Connect identifier. For example:
$ pulumi import aws:ec2transitgateway/connect:Connect example tgw-attach-12345678Content copied to clipboard