transit_gateway_attachments
Creates, updates, deletes or gets a transit_gateway_attachment
resource or lists transit_gateway_attachments
in a region
Overview
Name | transit_gateway_attachments |
Type | Resource |
Description | Resource Type definition for AWS::EC2::TransitGatewayAttachment |
Id | aws.ec2.transit_gateway_attachments |
Fields
Name | Datatype | Description |
---|---|---|
id | string | |
transit_gateway_id | string | |
vpc_id | string | |
subnet_ids | array | |
tags | array | |
options | object | The options for the transit gateway vpc attachment. |
region | string | AWS region. |
Methods
Name | Accessible by | Required Params |
---|---|---|
create_resource | INSERT | VpcId, SubnetIds, TransitGatewayId, region |
delete_resource | DELETE | data__Identifier, region |
update_resource | UPDATE | data__Identifier, data__PatchDocument, region |
list_resources | SELECT | region |
get_resource | SELECT | data__Identifier, region |
SELECT
examples
Gets all transit_gateway_attachments
in a region.
SELECT
region,
id,
transit_gateway_id,
vpc_id,
subnet_ids,
tags,
options
FROM aws.ec2.transit_gateway_attachments
WHERE region = 'us-east-1';
Gets all properties from an individual transit_gateway_attachment
.
SELECT
region,
id,
transit_gateway_id,
vpc_id,
subnet_ids,
tags,
options
FROM aws.ec2.transit_gateway_attachments
WHERE region = 'us-east-1' AND data__Identifier = '<Id>';
INSERT
example
Use the following StackQL query and manifest file to create a new transit_gateway_attachment
resource, using stack-deploy
.
- Required Properties
- All Properties
- Manifest
/*+ create */
INSERT INTO aws.ec2.transit_gateway_attachments (
TransitGatewayId,
VpcId,
SubnetIds,
region
)
SELECT
'{{ TransitGatewayId }}',
'{{ VpcId }}',
'{{ SubnetIds }}',
'{{ region }}';
/*+ create */
INSERT INTO aws.ec2.transit_gateway_attachments (
TransitGatewayId,
VpcId,
SubnetIds,
Tags,
Options,
region
)
SELECT
'{{ TransitGatewayId }}',
'{{ VpcId }}',
'{{ SubnetIds }}',
'{{ Tags }}',
'{{ Options }}',
'{{ region }}';
version: 1
name: stack name
description: stack description
providers:
- aws
globals:
- name: region
value: '{{ vars.AWS_REGION }}'
resources:
- name: transit_gateway_attachment
props:
- name: TransitGatewayId
value: '{{ TransitGatewayId }}'
- name: VpcId
value: '{{ VpcId }}'
- name: SubnetIds
value:
- '{{ SubnetIds[0] }}'
- name: Tags
value:
- Key: '{{ Key }}'
Value: '{{ Value }}'
- name: Options
value:
DnsSupport: '{{ DnsSupport }}'
Ipv6Support: '{{ Ipv6Support }}'
ApplianceModeSupport: '{{ ApplianceModeSupport }}'
SecurityGroupReferencingSupport: '{{ SecurityGroupReferencingSupport }}'
DELETE
example
/*+ delete */
DELETE FROM aws.ec2.transit_gateway_attachments
WHERE data__Identifier = '<Id>'
AND region = 'us-east-1';
Permissions
To operate on the transit_gateway_attachments
resource, the following permissions are required:
Create
ec2:DescribeTransitGatewayAttachments,
ec2:DescribeTransitGatewayVpcAttachments,
ec2:CreateTransitGatewayVpcAttachment,
ec2:DeleteTransitGatewayVpcAttachment,
ec2:CreateTags,
ec2:DeleteTags,
ec2:DescribeTags,
ec2:DescribeTransitGatewayAttachments,
ec2:ModifyTransitGatewayVpcAttachment
Read
ec2:DescribeTransitGatewayAttachments,
ec2:DescribeTransitGatewayVpcAttachments,
ec2:CreateTransitGatewayVpcAttachment,
ec2:DeleteTransitGatewayVpcAttachment,
ec2:CreateTags,
ec2:DeleteTags,
ec2:DescribeTags,
ec2:DescribeTransitGatewayAttachments,
ec2:ModifyTransitGatewayVpcAttachment
Delete
ec2:DescribeTransitGatewayAttachments,
ec2:DescribeTransitGatewayVpcAttachments,
ec2:CreateTransitGatewayVpcAttachment,
ec2:DeleteTransitGatewayVpcAttachment,
ec2:CreateTags,
ec2:DeleteTags,
ec2:DescribeTags,
ec2:DescribeTransitGatewayAttachments,
ec2:ModifyTransitGatewayVpcAttachment
List
ec2:DescribeTransitGatewayAttachments,
ec2:DescribeTransitGatewayVpcAttachments,
ec2:DescribeTags,
ec2:CreateTransitGatewayVpcAttachment,
ec2:CreateTags,
ec2:DeleteTransitGatewayVpcAttachment,
ec2:DeleteTags,
ec2:ModifyTransitGatewayVpcAttachment
Update
ec2:DescribeTransitGatewayAttachments,
ec2:DescribeTransitGatewayVpcAttachments,
ec2:DescribeTags,
ec2:CreateTransitGatewayVpcAttachment,
ec2:CreateTags,
ec2:DeleteTransitGatewayVpcAttachment,
ec2:DeleteTags,
ec2:ModifyTransitGatewayVpcAttachment