AWS Amazon EC2 Transit Gateway Route Table

This page shows how to write Terraform and CloudFormation for Amazon EC2 Transit Gateway Route Table and write them securely.

aws_ec2_transit_gateway_route_table (Terraform)

The Transit Gateway Route Table in Amazon EC2 can be configured in Terraform with the resource name aws_ec2_transit_gateway_route_table. The following sections describe 2 examples of how to use the resource and its parameters.

Example Usage from GitHub

tgw-route-tables.tf#L1
resource "aws_ec2_transit_gateway_route_table" "tgw_rt_a" {
  transit_gateway_id = aws_ec2_transit_gateway.tgw.id
  tags               = {
    Name             = "Route-Table-TGW-A"
  }
  depends_on = [aws_ec2_transit_gateway.tgw]
route_tables.tf#L1
resource "aws_ec2_transit_gateway_route_table" "shared-services" {
  transit_gateway_id = aws_ec2_transit_gateway.this.id

  tags = {
    Name = "SharedServices"
    Environment = "sharedservices"

Review your Terraform file for AWS best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Manages an EC2 Transit Gateway Route Table.

Tips: Best Practices for The Other AWS Amazon EC2 Resources

In addition to the aws_default_vpc, AWS Amazon EC2 has the other resources that should be configured for security reasons. Please check some examples of those resources and precautions.

risk-label

aws_default_vpc

Ensure to avoid using default VPC

It is better to define the own VPC and use it.

risk-label

aws_network_acl_rule

Ensure your network ACL rule blocks unwanted inbound traffic

It is better to block unwanted inbound traffic.

risk-label

aws_ebs_volume

Ensure to use a customer-managed key for EBS volume encryption

It is better to use a customer-managed key for EBS volume encryption. It can be gain more control over the encryption by using customer-managed keys (CMK).

risk-label

aws_instance

Ensure to avoid storing AWS access keys in user data

It is better to avoid storing AWS access keys in user data. `aws_iam_instance_profile` could be used instead.

risk-label

aws_security_group

Ensure your security group blocks unwanted inbound traffic

It is better to block unwanted inbound traffic.

Review your AWS Amazon EC2 settings

In addition to the above, there are other security points you should be aware of making sure that your .tf files are protected in Shisho Cloud.

AWS::EC2::TransitGatewayRouteTable (CloudFormation)

The TransitGatewayRouteTable in EC2 can be configured in CloudFormation with the resource name AWS::EC2::TransitGatewayRouteTable. The following sections describe 10 examples of how to use the resource and its parameters.

Example Usage from GitHub

create-TGW.yml#L66
    Type: AWS::EC2::TransitGatewayRouteTable
    Properties:
      TransitGatewayId: !Ref rTGW
      Tags:
      - Key: Name
        Value: !Sub "Lower Route Table ${AWS::StackName}"
transit-gateway.yml#L60
    Type: AWS::EC2::TransitGatewayRouteTable
    Properties:
      Tags:
        - Key: Name
          Value: internal-tgw-rt
      TransitGatewayId: !Ref rTransitGateway
2-BIU_transitgwprod.yml#L50
    Type: AWS::EC2::TransitGatewayRouteTable
    DependsOn: TransitGateway
    Properties:
      Tags:
        - Key: Name
          Value: VPN to All VPCs
TGW%20deployment.yml#L44
    Type: AWS::EC2::TransitGatewayRouteTable
    Properties:
      TransitGatewayId: !Ref TransitGateway
      Tags:
        - Key: Name
          Value: !Sub ${WorkstreemName} VPC1-RT
vpc-old.yml#L325
    Type: AWS::EC2::TransitGatewayRouteTable
    Properties:
      TransitGatewayId: !Ref SSTransitGateway
      Tags:
      - Key: Name
        Value: AWSVFW-IDS-PROD-TGA-RT
transitgateway.json#L34
              "Type" : "AWS::EC2::TransitGatewayRouteTable",
              "Properties" : {
                  "TransitGatewayId" : { "Ref" : "transitGatewayId" },
                  "Tags": [
                        {
                            "Key": "Name",
EC2TransitGatewayRouteTableSpecification.json#L22
    "AWS::EC2::TransitGatewayRouteTable": {
      "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html",
      "Properties": {
        "TransitGatewayId": {
          "Required": true,
          "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid",
EC2TransitGatewayRouteTableSpecification.json#L22
    "AWS::EC2::TransitGatewayRouteTable": {
      "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html",
      "Properties": {
        "TransitGatewayId": {
          "Required": true,
          "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetable.html#cfn-ec2-transitgatewayroutetable-transitgatewayid",
aws-quickstart-scca-transit-gateway-stack.json#L20
        "Type": "AWS::EC2::TransitGatewayRouteTable",
        "Properties": {
          "TransitGatewayId": {
            "Ref": "rSccaTgw"
          },
          "Tags": [
tgw.json#L17
            "Type": "AWS::EC2::TransitGatewayRouteTable",
            "Properties": {
                "Tags": [
                    {
                        "Key": "Name",
                        "Value": "Dev-Route-Table"

Parameters

Explanation in CloudFormation Registry

Specifies a route table for a transit gateway.

Frequently asked questions

What is AWS Amazon EC2 Transit Gateway Route Table?

AWS Amazon EC2 Transit Gateway Route Table is a resource for Amazon EC2 of Amazon Web Service. Settings can be wrote in Terraform and CloudFormation.

Where can I find the example code for the AWS Amazon EC2 Transit Gateway Route Table?

For Terraform, the annagtaraujo/Terraform-TGW-with-VPN and rafaelleonardocruz/tgw-example source code examples are useful. See the Terraform Example section for further details.

For CloudFormation, the liangruibupt/aws-is-how, awslabs/compliant-framework-for-federal-and-dod-workloads-in-aws-govcloud-us and deiselira/aws source code examples are useful. See the CloudFormation Example section for further details.