TransitGateway

class TransitGateway : KotlinCustomResource

Manages an EC2 Transit Gateway.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ec2transitgateway.TransitGateway;
import com.pulumi.aws.ec2transitgateway.TransitGatewayArgs;
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 TransitGateway("example", TransitGatewayArgs.builder()
.description("example")
.build());
}
}

Import

aws_ec2_transit_gateway can be imported by using the EC2 Transit Gateway identifier, e.g.,

$ pulumi import aws:ec2transitgateway/transitGateway:TransitGateway example tgw-12345678

Properties

Link copied to clipboard
val amazonSideAsn: Output<Int>?

Private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs. Default value: 64512.

Link copied to clipboard
val arn: Output<String>

EC2 Transit Gateway Amazon Resource Name (ARN)

Link copied to clipboard

Identifier of the default association route table

Link copied to clipboard

Whether resource attachment requests are automatically accepted. Valid values: disable, enable. Default value: disable.

Link copied to clipboard

Whether resource attachments are automatically associated with the default association route table. Valid values: disable, enable. Default value: enable.

Link copied to clipboard

Whether resource attachments automatically propagate routes to the default propagation route table. Valid values: disable, enable. Default value: enable.

Link copied to clipboard
val description: Output<String>?

Description of the EC2 Transit Gateway.

Link copied to clipboard
val dnsSupport: Output<String>?

Whether DNS support is enabled. Valid values: disable, enable. Default value: enable.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val multicastSupport: Output<String>?

Whether Multicast support is enabled. Required to use ec2_transit_gateway_multicast_domain. Valid values: disable, enable. Default value: disable.

Link copied to clipboard
val ownerId: Output<String>

Identifier of the AWS account that owns the EC2 Transit Gateway

Link copied to clipboard

Identifier of the default propagation route table

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tags: Output<Map<String, String>>?

Key-value tags for the EC2 Transit Gateway. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard

One or more IPv4 or IPv6 CIDR blocks for the transit gateway. Must be a size /24 CIDR block or larger for IPv4, or a size /64 CIDR block or larger for IPv6.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val vpnEcmpSupport: Output<String>?

Whether VPN Equal Cost Multipath Protocol support is enabled. Valid values: disable, enable. Default value: enable.