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
| Name | subnet_route_table_associations |
| Type | Resource |
| Description | Associates 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). |
| Id | awscc.ec2.subnet_route_table_associations |
Fields
- get (all properties)
- list (identifiers only)
| Name | Datatype | Description |
|---|---|---|
route_table_id | string | The ID of the route table.<br />The physical ID changes when the route table ID is changed. |
id | string | |
subnet_id | string | The ID of the subnet. |
region | string | AWS region. |
| Name | Datatype | Description |
|---|---|---|
id | string | |
region | string | AWS region. |
For more information, see AWS::EC2::SubnetRouteTableAssociation.
Methods
| Name | Resource | Accessible by | Required Params |
|---|---|---|---|
create_resource | subnet_route_table_associations | INSERT | RouteTableId, SubnetId, region |
delete_resource | subnet_route_table_associations | DELETE | Identifier, region |
list_resources | subnet_route_table_associations_list_only | SELECT | region |
get_resource | subnet_route_table_associations | SELECT | Identifier, region |
SELECT examples
- get (all properties)
- list (identifiers only)
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 }}';
Lists all subnet_route_table_associations in a region.
SELECT
region,
id
FROM awscc.ec2.subnet_route_table_associations_list_only
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.
- Required Properties
- All Properties
- Manifest
/*+ create */
INSERT INTO awscc.ec2.subnet_route_table_associations (
RouteTableId,
SubnetId,
region
)
SELECT
'{{ route_table_id }}',
'{{ subnet_id }}',
'{{ region }}';
/*+ create */
INSERT INTO awscc.ec2.subnet_route_table_associations (
RouteTableId,
SubnetId,
region
)
SELECT
'{{ route_table_id }}',
'{{ subnet_id }}',
'{{ region }}';
version: 1
name: stack name
description: stack description
providers:
- aws
globals:
- name: region
value: '{{ vars.AWS_REGION }}'
resources:
- name: subnet_route_table_association
props:
- name: route_table_id
value: '{{ route_table_id }}'
- name: subnet_id
value: '{{ subnet_id }}'
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:
- Read
- Create
- List
- Delete
ec2:DescribeRouteTables
ec2:AssociateRouteTable,
ec2:ReplaceRouteTableAssociation,
ec2:DescribeSubnets,
ec2:DescribeRouteTables
ec2:DescribeRouteTables
ec2:DisassociateRouteTable,
ec2:DescribeSubnets,
ec2:DescribeRouteTables