Skip to content

Commit

Permalink
Merge pull request crossplane-contrib#438 from airnity/main
Browse files Browse the repository at this point in the history
Fix ec2: `TransitGatewayRouteTablePropagation` inverted `transit_gateway_attachment_id` and `transit_gateway_route_table_id`ids
  • Loading branch information
sergenyalcin committed Jan 24, 2023
2 parents 887a19f + 2189aae commit 407a89d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/externalname.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ var ExternalNameConfigs = map[string]config.ExternalName{
// Imported by using the EC2 Transit Gateway Route Table identifier, an
// underscore, and the EC2 Transit Gateway Attachment identifier:
// tgw-rtb-12345678_tgw-attach-87654321
"aws_ec2_transit_gateway_route_table_propagation": FormattedIdentifierFromProvider("_", "transit_gateway_attachment_id", "transit_gateway_route_table_id"),
"aws_ec2_transit_gateway_route_table_propagation": FormattedIdentifierFromProvider("_", "transit_gateway_route_table_id", "transit_gateway_attachment_id"),
// Imported using the id: igw-c0a643a9
"aws_internet_gateway": config.IdentifierFromProvider,
// NAT Gateways can be imported using the id
Expand Down

0 comments on commit 407a89d

Please sign in to comment.