Skip to main content

subnet_route_table_associations

Used to retrieve a list of subnet_route_table_associations in a region or to create or delete a subnet_route_table_associations resource, use subnet_route_table_association to read or update an individual resource.

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).
Idaws.ec2.subnet_route_table_associations

Fields

NameDatatypeDescription
idstring
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTRouteTableId, SubnetId, region
delete_resourceDELETEdata__Identifier, region
list_resourceSELECTregion

SELECT Example

SELECT
region,
id
FROM aws.ec2.subnet_route_table_associations
WHERE region = 'us-east-1';

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 aws.ec2.subnet_route_table_associations (
RouteTableId,
SubnetId,
region
)
SELECT
'{{ RouteTableId }}',
'{{ SubnetId }}',
'{{ region }}';

DELETE Example

/*+ delete */
DELETE FROM aws.ec2.subnet_route_table_associations
WHERE data__Identifier = '<Id>'
AND region = 'us-east-1';

Permissions

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

Create

ec2:AssociateRouteTable,
ec2:ReplaceRouteTableAssociation,
ec2:DescribeSubnets,
ec2:DescribeRouteTables

Delete

ec2:DisassociateRouteTable,
ec2:DescribeSubnets,
ec2:DescribeRouteTables

List

ec2:DescribeRouteTables