Route Table Propagation
Manages an EC2 Transit Gateway Route Table propagation.
Example Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ec2transitgateway.RouteTablePropagation;
import com.pulumi.aws.ec2transitgateway.RouteTablePropagationArgs;
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 RouteTablePropagation("example", RouteTablePropagationArgs.builder()
.transitGatewayAttachmentId(aws_ec2_transit_gateway_vpc_attachment.example().id())
.transitGatewayRouteTableId(aws_ec2_transit_gateway_route_table.example().id())
.build());
}
}
Content copied to clipboard
Import
aws_ec2_transit_gateway_route_table_propagation
can be imported by using the EC2 Transit Gateway Route Table identifier, an underscore, and the EC2 Transit Gateway Attachment identifier, e.g.,
$ pulumi import aws:ec2transitgateway/routeTablePropagation:RouteTablePropagation example tgw-rtb-12345678_tgw-attach-87654321
Content copied to clipboard
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Identifier of the resource
Link copied to clipboard
Type of the resource
Link copied to clipboard
Identifier of EC2 Transit Gateway Attachment.
Link copied to clipboard
Identifier of EC2 Transit Gateway Route Table.