1. Packages
  2. Confluent Cloud
  3. API Docs
  4. TransitGatewayAttachment
Confluent v1.38.0 published on Thursday, Mar 21, 2024 by Pulumi

confluentcloud.TransitGatewayAttachment

Explore with Pulumi AI

confluentcloud logo
Confluent v1.38.0 published on Thursday, Mar 21, 2024 by Pulumi

    Example Usage

    Example Transit Gateway Attachment on AWS

    import * as pulumi from "@pulumi/pulumi";
    import * as confluentcloud from "@pulumi/confluentcloud";
    
    const development = new confluentcloud.Environment("development", {});
    const aws_transit_gateway_attachment = new confluentcloud.Network("aws-transit-gateway-attachment", {
        displayName: "AWS Transit Gateway Attachment Network",
        cloud: "AWS",
        region: "us-east-2",
        cidr: "10.10.0.0/16",
        connectionTypes: ["TRANSITGATEWAY"],
        environment: {
            id: development.id,
        },
    });
    const aws = new confluentcloud.TransitGatewayAttachment("aws", {
        displayName: "AWS Transit Gateway Attachment",
        aws: {
            ramResourceShareArn: "arn:aws:ram:us-east-2:000000000000:resource-share/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx",
            transitGatewayId: "tgw-xxxxxxxxxxxxxxxxx",
            routes: [
                "192.168.0.0/16",
                "172.16.0.0/12",
                "100.64.0.0/10",
                "10.0.0.0/8",
            ],
        },
        environment: {
            id: development.id,
        },
        network: {
            id: aws_transit_gateway_attachment.id,
        },
    });
    
    import pulumi
    import pulumi_confluentcloud as confluentcloud
    
    development = confluentcloud.Environment("development")
    aws_transit_gateway_attachment = confluentcloud.Network("aws-transit-gateway-attachment",
        display_name="AWS Transit Gateway Attachment Network",
        cloud="AWS",
        region="us-east-2",
        cidr="10.10.0.0/16",
        connection_types=["TRANSITGATEWAY"],
        environment=confluentcloud.NetworkEnvironmentArgs(
            id=development.id,
        ))
    aws = confluentcloud.TransitGatewayAttachment("aws",
        display_name="AWS Transit Gateway Attachment",
        aws=confluentcloud.TransitGatewayAttachmentAwsArgs(
            ram_resource_share_arn="arn:aws:ram:us-east-2:000000000000:resource-share/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx",
            transit_gateway_id="tgw-xxxxxxxxxxxxxxxxx",
            routes=[
                "192.168.0.0/16",
                "172.16.0.0/12",
                "100.64.0.0/10",
                "10.0.0.0/8",
            ],
        ),
        environment=confluentcloud.TransitGatewayAttachmentEnvironmentArgs(
            id=development.id,
        ),
        network=confluentcloud.TransitGatewayAttachmentNetworkArgs(
            id=aws_transit_gateway_attachment.id,
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-confluentcloud/sdk/go/confluentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		development, err := confluentcloud.NewEnvironment(ctx, "development", nil)
    		if err != nil {
    			return err
    		}
    		_, err = confluentcloud.NewNetwork(ctx, "aws-transit-gateway-attachment", &confluentcloud.NetworkArgs{
    			DisplayName: pulumi.String("AWS Transit Gateway Attachment Network"),
    			Cloud:       pulumi.String("AWS"),
    			Region:      pulumi.String("us-east-2"),
    			Cidr:        pulumi.String("10.10.0.0/16"),
    			ConnectionTypes: pulumi.StringArray{
    				pulumi.String("TRANSITGATEWAY"),
    			},
    			Environment: &confluentcloud.NetworkEnvironmentArgs{
    				Id: development.ID(),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = confluentcloud.NewTransitGatewayAttachment(ctx, "aws", &confluentcloud.TransitGatewayAttachmentArgs{
    			DisplayName: pulumi.String("AWS Transit Gateway Attachment"),
    			Aws: &confluentcloud.TransitGatewayAttachmentAwsArgs{
    				RamResourceShareArn: pulumi.String("arn:aws:ram:us-east-2:000000000000:resource-share/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx"),
    				TransitGatewayId:    pulumi.String("tgw-xxxxxxxxxxxxxxxxx"),
    				Routes: pulumi.StringArray{
    					pulumi.String("192.168.0.0/16"),
    					pulumi.String("172.16.0.0/12"),
    					pulumi.String("100.64.0.0/10"),
    					pulumi.String("10.0.0.0/8"),
    				},
    			},
    			Environment: &confluentcloud.TransitGatewayAttachmentEnvironmentArgs{
    				Id: development.ID(),
    			},
    			Network: &confluentcloud.TransitGatewayAttachmentNetworkArgs{
    				Id: aws_transit_gateway_attachment.ID(),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using ConfluentCloud = Pulumi.ConfluentCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var development = new ConfluentCloud.Environment("development");
    
        var aws_transit_gateway_attachment = new ConfluentCloud.Network("aws-transit-gateway-attachment", new()
        {
            DisplayName = "AWS Transit Gateway Attachment Network",
            Cloud = "AWS",
            Region = "us-east-2",
            Cidr = "10.10.0.0/16",
            ConnectionTypes = new[]
            {
                "TRANSITGATEWAY",
            },
            Environment = new ConfluentCloud.Inputs.NetworkEnvironmentArgs
            {
                Id = development.Id,
            },
        });
    
        var aws = new ConfluentCloud.TransitGatewayAttachment("aws", new()
        {
            DisplayName = "AWS Transit Gateway Attachment",
            Aws = new ConfluentCloud.Inputs.TransitGatewayAttachmentAwsArgs
            {
                RamResourceShareArn = "arn:aws:ram:us-east-2:000000000000:resource-share/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx",
                TransitGatewayId = "tgw-xxxxxxxxxxxxxxxxx",
                Routes = new[]
                {
                    "192.168.0.0/16",
                    "172.16.0.0/12",
                    "100.64.0.0/10",
                    "10.0.0.0/8",
                },
            },
            Environment = new ConfluentCloud.Inputs.TransitGatewayAttachmentEnvironmentArgs
            {
                Id = development.Id,
            },
            Network = new ConfluentCloud.Inputs.TransitGatewayAttachmentNetworkArgs
            {
                Id = aws_transit_gateway_attachment.Id,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.confluentcloud.Environment;
    import com.pulumi.confluentcloud.Network;
    import com.pulumi.confluentcloud.NetworkArgs;
    import com.pulumi.confluentcloud.inputs.NetworkEnvironmentArgs;
    import com.pulumi.confluentcloud.TransitGatewayAttachment;
    import com.pulumi.confluentcloud.TransitGatewayAttachmentArgs;
    import com.pulumi.confluentcloud.inputs.TransitGatewayAttachmentAwsArgs;
    import com.pulumi.confluentcloud.inputs.TransitGatewayAttachmentEnvironmentArgs;
    import com.pulumi.confluentcloud.inputs.TransitGatewayAttachmentNetworkArgs;
    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 development = new Environment("development");
    
            var aws_transit_gateway_attachment = new Network("aws-transit-gateway-attachment", NetworkArgs.builder()        
                .displayName("AWS Transit Gateway Attachment Network")
                .cloud("AWS")
                .region("us-east-2")
                .cidr("10.10.0.0/16")
                .connectionTypes("TRANSITGATEWAY")
                .environment(NetworkEnvironmentArgs.builder()
                    .id(development.id())
                    .build())
                .build());
    
            var aws = new TransitGatewayAttachment("aws", TransitGatewayAttachmentArgs.builder()        
                .displayName("AWS Transit Gateway Attachment")
                .aws(TransitGatewayAttachmentAwsArgs.builder()
                    .ramResourceShareArn("arn:aws:ram:us-east-2:000000000000:resource-share/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx")
                    .transitGatewayId("tgw-xxxxxxxxxxxxxxxxx")
                    .routes(                
                        "192.168.0.0/16",
                        "172.16.0.0/12",
                        "100.64.0.0/10",
                        "10.0.0.0/8")
                    .build())
                .environment(TransitGatewayAttachmentEnvironmentArgs.builder()
                    .id(development.id())
                    .build())
                .network(TransitGatewayAttachmentNetworkArgs.builder()
                    .id(aws_transit_gateway_attachment.id())
                    .build())
                .build());
    
        }
    }
    
    resources:
      development:
        type: confluentcloud:Environment
      aws-transit-gateway-attachment:
        type: confluentcloud:Network
        properties:
          displayName: AWS Transit Gateway Attachment Network
          cloud: AWS
          region: us-east-2
          cidr: 10.10.0.0/16
          connectionTypes:
            - TRANSITGATEWAY
          environment:
            id: ${development.id}
      aws:
        type: confluentcloud:TransitGatewayAttachment
        properties:
          displayName: AWS Transit Gateway Attachment
          aws:
            ramResourceShareArn: arn:aws:ram:us-east-2:000000000000:resource-share/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx
            transitGatewayId: tgw-xxxxxxxxxxxxxxxxx
            routes:
              - 192.168.0.0/16
              - 172.16.0.0/12
              - 100.64.0.0/10
              - 10.0.0.0/8
          environment:
            id: ${development.id}
          network:
            id: ${["aws-transit-gateway-attachment"].id}
    

    Getting Started

    The following end-to-end examples might help to get started with confluentcloud.TransitGatewayAttachment resource:

    • dedicated-transit-gateway-attachment-aws-kafka-acls: Dedicated Kafka cluster on AWS that is accessible via Transit Gateway Endpoint with authorization using ACLs
    • enterprise-privatelinkattachment-aws-kafka-acls

    Create TransitGatewayAttachment Resource

    new TransitGatewayAttachment(name: string, args: TransitGatewayAttachmentArgs, opts?: CustomResourceOptions);
    @overload
    def TransitGatewayAttachment(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 aws: Optional[TransitGatewayAttachmentAwsArgs] = None,
                                 display_name: Optional[str] = None,
                                 environment: Optional[TransitGatewayAttachmentEnvironmentArgs] = None,
                                 network: Optional[TransitGatewayAttachmentNetworkArgs] = None)
    @overload
    def TransitGatewayAttachment(resource_name: str,
                                 args: TransitGatewayAttachmentArgs,
                                 opts: Optional[ResourceOptions] = None)
    func NewTransitGatewayAttachment(ctx *Context, name string, args TransitGatewayAttachmentArgs, opts ...ResourceOption) (*TransitGatewayAttachment, error)
    public TransitGatewayAttachment(string name, TransitGatewayAttachmentArgs args, CustomResourceOptions? opts = null)
    public TransitGatewayAttachment(String name, TransitGatewayAttachmentArgs args)
    public TransitGatewayAttachment(String name, TransitGatewayAttachmentArgs args, CustomResourceOptions options)
    
    type: confluentcloud:TransitGatewayAttachment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args TransitGatewayAttachmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args TransitGatewayAttachmentArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args TransitGatewayAttachmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TransitGatewayAttachmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TransitGatewayAttachmentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    TransitGatewayAttachment Resource Properties

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

    Inputs

    The TransitGatewayAttachment resource accepts the following input properties:

    Environment Pulumi.ConfluentCloud.Inputs.TransitGatewayAttachmentEnvironment
    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
    Network Pulumi.ConfluentCloud.Inputs.TransitGatewayAttachmentNetwork
    Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider accounts.
    Aws Pulumi.ConfluentCloud.Inputs.TransitGatewayAttachmentAws
    (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
    DisplayName string
    The name of the Transit Gateway Attachment.
    Environment TransitGatewayAttachmentEnvironmentArgs
    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
    Network TransitGatewayAttachmentNetworkArgs
    Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider accounts.
    Aws TransitGatewayAttachmentAwsArgs
    (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
    DisplayName string
    The name of the Transit Gateway Attachment.
    environment TransitGatewayAttachmentEnvironment
    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
    network TransitGatewayAttachmentNetwork
    Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider accounts.
    aws TransitGatewayAttachmentAws
    (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
    displayName String
    The name of the Transit Gateway Attachment.
    environment TransitGatewayAttachmentEnvironment
    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
    network TransitGatewayAttachmentNetwork
    Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider accounts.
    aws TransitGatewayAttachmentAws
    (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
    displayName string
    The name of the Transit Gateway Attachment.
    environment TransitGatewayAttachmentEnvironmentArgs
    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
    network TransitGatewayAttachmentNetworkArgs
    Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider accounts.
    aws TransitGatewayAttachmentAwsArgs
    (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
    display_name str
    The name of the Transit Gateway Attachment.
    environment Property Map
    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
    network Property Map
    Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider accounts.
    aws Property Map
    (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
    displayName String
    The name of the Transit Gateway Attachment.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TransitGatewayAttachment 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 TransitGatewayAttachment Resource

    Get an existing TransitGatewayAttachment 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?: TransitGatewayAttachmentState, opts?: CustomResourceOptions): TransitGatewayAttachment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            aws: Optional[TransitGatewayAttachmentAwsArgs] = None,
            display_name: Optional[str] = None,
            environment: Optional[TransitGatewayAttachmentEnvironmentArgs] = None,
            network: Optional[TransitGatewayAttachmentNetworkArgs] = None) -> TransitGatewayAttachment
    func GetTransitGatewayAttachment(ctx *Context, name string, id IDInput, state *TransitGatewayAttachmentState, opts ...ResourceOption) (*TransitGatewayAttachment, error)
    public static TransitGatewayAttachment Get(string name, Input<string> id, TransitGatewayAttachmentState? state, CustomResourceOptions? opts = null)
    public static TransitGatewayAttachment get(String name, Output<String> id, TransitGatewayAttachmentState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    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:
    Aws Pulumi.ConfluentCloud.Inputs.TransitGatewayAttachmentAws
    (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
    DisplayName string
    The name of the Transit Gateway Attachment.
    Environment Pulumi.ConfluentCloud.Inputs.TransitGatewayAttachmentEnvironment
    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
    Network Pulumi.ConfluentCloud.Inputs.TransitGatewayAttachmentNetwork
    Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider accounts.
    Aws TransitGatewayAttachmentAwsArgs
    (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
    DisplayName string
    The name of the Transit Gateway Attachment.
    Environment TransitGatewayAttachmentEnvironmentArgs
    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
    Network TransitGatewayAttachmentNetworkArgs
    Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider accounts.
    aws TransitGatewayAttachmentAws
    (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
    displayName String
    The name of the Transit Gateway Attachment.
    environment TransitGatewayAttachmentEnvironment
    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
    network TransitGatewayAttachmentNetwork
    Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider accounts.
    aws TransitGatewayAttachmentAws
    (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
    displayName string
    The name of the Transit Gateway Attachment.
    environment TransitGatewayAttachmentEnvironment
    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
    network TransitGatewayAttachmentNetwork
    Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider accounts.
    aws TransitGatewayAttachmentAwsArgs
    (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
    display_name str
    The name of the Transit Gateway Attachment.
    environment TransitGatewayAttachmentEnvironmentArgs
    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
    network TransitGatewayAttachmentNetworkArgs
    Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider accounts.
    aws Property Map
    (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
    displayName String
    The name of the Transit Gateway Attachment.
    environment Property Map
    Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
    network Property Map
    Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider accounts.

    Supporting Types

    TransitGatewayAttachmentAws, TransitGatewayAttachmentAwsArgs

    RamResourceShareArn string
    The Amazon Resource Name (ARN) of the Resource Access Manager (RAM) Resource Share of the transit gateway your Confluent Cloud network attaches to.
    Routes List<string>

    List of destination routes for traffic from Confluent VPC to customer VPC via Transit Gateway.

    Note: Learn more about Transit Gateway Attachment limitations on AWS here.

    TransitGatewayId string
    The ID of the AWS Transit Gateway that you want Confluent CLoud to be attached to. Must start with tgw-.
    TransitGatewayAttachmentId string
    (Required String) The ID of the AWS Transit Gateway VPC Attachment that attaches Confluent VPC to Transit Gateway.
    RamResourceShareArn string
    The Amazon Resource Name (ARN) of the Resource Access Manager (RAM) Resource Share of the transit gateway your Confluent Cloud network attaches to.
    Routes []string

    List of destination routes for traffic from Confluent VPC to customer VPC via Transit Gateway.

    Note: Learn more about Transit Gateway Attachment limitations on AWS here.

    TransitGatewayId string
    The ID of the AWS Transit Gateway that you want Confluent CLoud to be attached to. Must start with tgw-.
    TransitGatewayAttachmentId string
    (Required String) The ID of the AWS Transit Gateway VPC Attachment that attaches Confluent VPC to Transit Gateway.
    ramResourceShareArn String
    The Amazon Resource Name (ARN) of the Resource Access Manager (RAM) Resource Share of the transit gateway your Confluent Cloud network attaches to.
    routes List<String>

    List of destination routes for traffic from Confluent VPC to customer VPC via Transit Gateway.

    Note: Learn more about Transit Gateway Attachment limitations on AWS here.

    transitGatewayId String
    The ID of the AWS Transit Gateway that you want Confluent CLoud to be attached to. Must start with tgw-.
    transitGatewayAttachmentId String
    (Required String) The ID of the AWS Transit Gateway VPC Attachment that attaches Confluent VPC to Transit Gateway.
    ramResourceShareArn string
    The Amazon Resource Name (ARN) of the Resource Access Manager (RAM) Resource Share of the transit gateway your Confluent Cloud network attaches to.
    routes string[]

    List of destination routes for traffic from Confluent VPC to customer VPC via Transit Gateway.

    Note: Learn more about Transit Gateway Attachment limitations on AWS here.

    transitGatewayId string
    The ID of the AWS Transit Gateway that you want Confluent CLoud to be attached to. Must start with tgw-.
    transitGatewayAttachmentId string
    (Required String) The ID of the AWS Transit Gateway VPC Attachment that attaches Confluent VPC to Transit Gateway.
    ram_resource_share_arn str
    The Amazon Resource Name (ARN) of the Resource Access Manager (RAM) Resource Share of the transit gateway your Confluent Cloud network attaches to.
    routes Sequence[str]

    List of destination routes for traffic from Confluent VPC to customer VPC via Transit Gateway.

    Note: Learn more about Transit Gateway Attachment limitations on AWS here.

    transit_gateway_id str
    The ID of the AWS Transit Gateway that you want Confluent CLoud to be attached to. Must start with tgw-.
    transit_gateway_attachment_id str
    (Required String) The ID of the AWS Transit Gateway VPC Attachment that attaches Confluent VPC to Transit Gateway.
    ramResourceShareArn String
    The Amazon Resource Name (ARN) of the Resource Access Manager (RAM) Resource Share of the transit gateway your Confluent Cloud network attaches to.
    routes List<String>

    List of destination routes for traffic from Confluent VPC to customer VPC via Transit Gateway.

    Note: Learn more about Transit Gateway Attachment limitations on AWS here.

    transitGatewayId String
    The ID of the AWS Transit Gateway that you want Confluent CLoud to be attached to. Must start with tgw-.
    transitGatewayAttachmentId String
    (Required String) The ID of the AWS Transit Gateway VPC Attachment that attaches Confluent VPC to Transit Gateway.

    TransitGatewayAttachmentEnvironment, TransitGatewayAttachmentEnvironmentArgs

    Id string
    The ID of the Network that the Transit Gateway Attachment belongs to, for example, n-abc123.
    Id string
    The ID of the Network that the Transit Gateway Attachment belongs to, for example, n-abc123.
    id String
    The ID of the Network that the Transit Gateway Attachment belongs to, for example, n-abc123.
    id string
    The ID of the Network that the Transit Gateway Attachment belongs to, for example, n-abc123.
    id str
    The ID of the Network that the Transit Gateway Attachment belongs to, for example, n-abc123.
    id String
    The ID of the Network that the Transit Gateway Attachment belongs to, for example, n-abc123.

    TransitGatewayAttachmentNetwork, TransitGatewayAttachmentNetworkArgs

    Id string
    The ID of the Network that the Transit Gateway Attachment belongs to, for example, n-abc123.
    Id string
    The ID of the Network that the Transit Gateway Attachment belongs to, for example, n-abc123.
    id String
    The ID of the Network that the Transit Gateway Attachment belongs to, for example, n-abc123.
    id string
    The ID of the Network that the Transit Gateway Attachment belongs to, for example, n-abc123.
    id str
    The ID of the Network that the Transit Gateway Attachment belongs to, for example, n-abc123.
    id String
    The ID of the Network that the Transit Gateway Attachment belongs to, for example, n-abc123.

    Import

    You can import a Transit Gateway Attachment by using Environment ID and Transit Gateway Attachment ID, in the format <Environment ID>/<Transit Gateway Attachment ID>. The following example shows how to import a Transit Gateway Attachment:

    $ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>"

    $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"

    $ pulumi import confluentcloud:index/transitGatewayAttachment:TransitGatewayAttachment my_tgwa env-abc123/tgwa-abc123
    

    !> Warning: Do not forget to delete terminal command history afterwards for security purposes.

    Package Details

    Repository
    Confluent Cloud pulumi/pulumi-confluentcloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the confluent Terraform Provider.
    confluentcloud logo
    Confluent v1.38.0 published on Thursday, Mar 21, 2024 by Pulumi