Skip to main content

aws_transit_gateway resource

[edit on GitHub]

Use the aws_transit_gateway InSpec audit resource to test properties of a transit gateway.

Syntax

An aws_transit_gateway resource block uses the parameter to select a transit gateway.

describe aws_transit_gateway(transit_gateway_id: 'tgw-1234567') do
  it { should exist }
end

Parameters

transit*gateway_id *(required)_

This resource accepts a single parameter, the Transit Gateway ID. This can be passed either as a string or as a transit_gateway_id: 'value' key-value entry in a hash.

See also the AWS documentation on Transit Gateways.

Properties

PropertyDescription
transit_gateway_idProvides the ID of the Transit Gateway.
transit_gateway_arnProvides the ARN of the Transit Gateway.
transit_gateway_owner_idProvides the id of the owner of the Transit Gateway.
default_route_table_idProvides the id of the default route table of the Transit Gateway.
propagation_default_route_table_idProvides the propagation default route table id for the Transit gateway
dns_supportProvides the status of dns support for the Transit Gateway
vpn_ecmp_supportProvides the status of vpn ecmp support for the Transit Gateway

Examples

Check the owner id zone of the Transit Gateway

describe aws_transit_gateway(transit_gateway_id: 'tgw-0e231ae7f5e5e7bd5') do
  its('transit_gateway_owner_id') { should eq 'owner_id' }
end

Matchers

This InSpec audit resource has the following special matchers. For a full list of available matchers, please visit our matchers page.

exist

The exist matcher indicates that a transit gateway exists.

describe aws_transit_gateway(transit_gateway_id: 'tgw-0e231ae7f5e5e7bd5') do
      it { should exist }
end

AWS Permissions

Your Principal will need the ec2:DescribeTransitGateways action with Effect set to Allow.

You can find detailed documentation at Actions, Resources, and Condition Keys for Amazon EC2.