Skip to main content

subnet_route_table_associations

Creates, updates, deletes or gets a subnet_route_table_association resource or lists subnet_route_table_associations in a region

Overview

Namesubnet_route_table_associations
TypeResource
DescriptionAssociates a subnet with a route table. The subnet and route table must be in the same VPC. This association causes traffic originating from the subnet to be routed according to the routes in the route table. A route table can be associated with multiple subnets. To create a route table, see [AWS::EC2::RouteTable](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routetable.html).
Idawscc.ec2.subnet_route_table_associations

Fields

NameDatatypeDescription
route_table_idstringThe ID of the route table.<br />The physical ID changes when the route table ID is changed.
idstring
subnet_idstringThe ID of the subnet.
regionstringAWS region.

For more information, see AWS::EC2::SubnetRouteTableAssociation.

Methods

NameResourceAccessible byRequired Params
create_resourcesubnet_route_table_associationsINSERTRouteTableId, SubnetId, region
delete_resourcesubnet_route_table_associationsDELETEIdentifier, region
list_resourcessubnet_route_table_associations_list_onlySELECTregion
get_resourcesubnet_route_table_associationsSELECTIdentifier, region

SELECT examples

Gets all properties from an individual subnet_route_table_association.

SELECT
region,
route_table_id,
id,
subnet_id
FROM awscc.ec2.subnet_route_table_associations
WHERE
region = 'us-east-1' AND
Identifier = '{{ id }}';

INSERT example

Use the following StackQL query and manifest file to create a new subnet_route_table_association resource, using stack-deploy.

/*+ create */
INSERT INTO awscc.ec2.subnet_route_table_associations (
RouteTableId,
SubnetId,
region
)
SELECT
'{{ route_table_id }}',
'{{ subnet_id }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM awscc.ec2.subnet_route_table_associations
WHERE
Identifier = '{{ id }}' AND
region = 'us-east-1';

Permissions

To operate on the subnet_route_table_associations resource, the following permissions are required:

ec2:DescribeRouteTables