VpcAttachmentArgs

data class VpcAttachmentArgs(val applianceModeSupport: Output<String>? = null, val dnsSupport: Output<String>? = null, val ipv6Support: Output<String>? = null, val subnetIds: Output<List<String>>? = null, val tags: Output<Map<String, String>>? = null, val transitGatewayDefaultRouteTableAssociation: Output<Boolean>? = null, val transitGatewayDefaultRouteTablePropagation: Output<Boolean>? = null, val transitGatewayId: Output<String>? = null, val vpcId: Output<String>? = null) : ConvertibleToJava<VpcAttachmentArgs>

Manages an EC2 Transit Gateway VPC Attachment. For examples of custom route table association and propagation, see the EC2 Transit Gateway Networking Examples Guide.

Example Usage

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 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(aws_subnet.example().id())
.transitGatewayId(aws_ec2_transit_gateway.example().id())
.vpcId(aws_vpc.example().id())
.build());
}
}

Import

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

$ pulumi import aws:ec2transitgateway/vpcAttachment:VpcAttachment example tgw-attach-12345678

Constructors

Link copied to clipboard
constructor(applianceModeSupport: Output<String>? = null, dnsSupport: Output<String>? = null, ipv6Support: Output<String>? = null, subnetIds: Output<List<String>>? = null, tags: Output<Map<String, String>>? = null, transitGatewayDefaultRouteTableAssociation: Output<Boolean>? = null, transitGatewayDefaultRouteTablePropagation: Output<Boolean>? = null, transitGatewayId: Output<String>? = null, vpcId: Output<String>? = null)

Properties

Link copied to clipboard
val applianceModeSupport: Output<String>? = null

Whether Appliance Mode support is enabled. If enabled, a traffic flow between a source and destination uses the same Availability Zone for the VPC attachment for the lifetime of that flow. Valid values: disable, enable. Default value: disable.

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

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

Link copied to clipboard
val ipv6Support: Output<String>? = null

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

Link copied to clipboard
val subnetIds: Output<List<String>>? = null

Identifiers of EC2 Subnets.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

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

Boolean whether the VPC Attachment should be associated with the EC2 Transit Gateway association default route table. This cannot be configured or perform drift detection with Resource Access Manager shared EC2 Transit Gateways. Default value: true.

Boolean whether the VPC Attachment should propagate routes with the EC2 Transit Gateway propagation default route table. This cannot be configured or perform drift detection with Resource Access Manager shared EC2 Transit Gateways. Default value: true.

Link copied to clipboard
val transitGatewayId: Output<String>? = null

Identifier of EC2 Transit Gateway.

Link copied to clipboard
val vpcId: Output<String>? = null

Identifier of EC2 VPC.

Functions

Link copied to clipboard
open override fun toJava(): VpcAttachmentArgs