AWS Amazon EC2 Local Gateway Route Table VPC Association

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

aws_ec2_local_gateway_route_table_vpc_association (Terraform)

The Local Gateway Route Table VPC Association in Amazon EC2 can be configured in Terraform with the resource name aws_ec2_local_gateway_route_table_vpc_association. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

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 Local Gateway Route Table VPC Association. More information can be found in the Outposts User Guide.

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::LocalGatewayRouteTableVPCAssociation (CloudFormation)

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

Example Usage from GitHub

product.template-us-west-2.yaml#L12
    Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation
    Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html
    Properties:
      LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId'
      VpcId: !Ref 'VpcId'
      Tags: {}
product.template-ca-central-1.yaml#L12
    Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation
    Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html
    Properties:
      LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId'
      VpcId: !Ref 'VpcId'
      Tags: {}
product.template-eu-west-1.yaml#L12
    Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation
    Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html
    Properties:
      LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId'
      VpcId: !Ref 'VpcId'
      Tags: {}
product.template-ap-northeast-1.yaml#L12
    Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation
    Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html
    Properties:
      LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId'
      VpcId: !Ref 'VpcId'
      Tags: {}
product.template-us-east-1.yaml#L12
    Type: AWS::EC2::LocalGatewayRouteTableVPCAssociation
    Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetablevpcassociation.html
    Properties:
      LocalGatewayRouteTableId: !Ref 'LocalGatewayRouteTableId'
      VpcId: !Ref 'VpcId'
      Tags: {}
awsResouceIconMatches.json#L214
        "resourceType": "AWS::EC2::LocalGatewayRouteTableVPCAssociation",
        "filePath": null
      },
      {
        "resourceType": "AWS::EC2::TransitGatewayRouteTablePropagation",
        "filePath": null
template.json#L2071
    "AWS::EC2::LocalGatewayRouteTableVPCAssociation": {
      "Type": "AWS::EC2::LocalGatewayRouteTableVPCAssociation",
      "Properties": {}
    },
    "AWS::GameLift::GameSessionQueue": {
      "Type": "AWS::GameLift::GameSessionQueue",
EC2LocalGatewayRouteTableVPCAssociationSpecification.json#L20
    "AWS::EC2::LocalGatewayRouteTableVPCAssociation.Tags": {
      "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-localgatewayroutetablevpcassociation-tags.html",
      "Properties": {
        "Tags": {
          "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-localgatewayroutetablevpcassociation-tags.html#cfn-ec2-localgatewayroutetablevpcassociation-tags-tags",
          "UpdateType": "Mutable",

Parameters

Explanation in CloudFormation Registry

Associates the specified VPC with the specified local gateway route table.

Frequently asked questions

What is AWS Amazon EC2 Local Gateway Route Table VPC Association?

AWS Amazon EC2 Local Gateway Route Table VPC Association 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 Local Gateway Route Table VPC Association?

For CloudFormation, the awslabs/aws-service-catalog-products, awslabs/aws-service-catalog-products and awslabs/aws-service-catalog-products source code examples are useful. See the CloudFormation Example section for further details.