|
| 1 | +// aws_ec2_transit_gateway |
| 2 | +output "this_ec2_transit_gateway_arn" { |
| 3 | + description = "EC2 Transit Gateway Amazon Resource Name (ARN)" |
| 4 | + value = module.tgw.this_ec2_transit_gateway_arn |
| 5 | +} |
| 6 | + |
| 7 | +output "this_ec2_transit_gateway_association_default_route_table_id" { |
| 8 | + description = "Identifier of the default association route table" |
| 9 | + value = module.tgw.this_ec2_transit_gateway_association_default_route_table_id |
| 10 | +} |
| 11 | + |
| 12 | +output "this_ec2_transit_gateway_id" { |
| 13 | + description = "EC2 Transit Gateway identifier" |
| 14 | + value = module.tgw.this_ec2_transit_gateway_id |
| 15 | +} |
| 16 | + |
| 17 | +output "this_ec2_transit_gateway_owner_id" { |
| 18 | + description = "Identifier of the AWS account that owns the EC2 Transit Gateway" |
| 19 | + value = module.tgw.this_ec2_transit_gateway_owner_id |
| 20 | +} |
| 21 | + |
| 22 | +output "this_ec2_transit_gateway_propagation_default_route_table_id" { |
| 23 | + description = "Identifier of the default propagation route table" |
| 24 | + value = module.tgw.this_ec2_transit_gateway_propagation_default_route_table_id |
| 25 | +} |
| 26 | + |
| 27 | +output "this_ec2_transit_gateway_route_table_default_association_route_table" { |
| 28 | + description = "Boolean whether this is the default association route table for the EC2 Transit Gateway" |
| 29 | + value = module.tgw.this_ec2_transit_gateway_route_table_default_association_route_table |
| 30 | +} |
| 31 | + |
| 32 | +output "this_ec2_transit_gateway_route_table_default_propagation_route_table" { |
| 33 | + description = "Boolean whether this is the default propagation route table for the EC2 Transit Gateway" |
| 34 | + value = module.tgw.this_ec2_transit_gateway_route_table_default_propagation_route_table |
| 35 | +} |
| 36 | + |
| 37 | +// aws_ec2_transit_gateway_route_table |
| 38 | +output "this_ec2_transit_gateway_route_table_id" { |
| 39 | + description = "EC2 Transit Gateway Route Table identifier" |
| 40 | + value = module.tgw.this_ec2_transit_gateway_route_table_id |
| 41 | +} |
| 42 | + |
| 43 | +// aws_ec2_transit_gateway_route |
| 44 | +output "this_ec2_transit_gateway_route_ids" { |
| 45 | + description = "List of EC2 Transit Gateway Route Table identifier combined with destination" |
| 46 | + value = module.tgw.this_ec2_transit_gateway_route_ids |
| 47 | +} |
| 48 | + |
| 49 | +// aws_ec2_transit_gateway_vpc_attachment |
| 50 | +output "this_ec2_transit_gateway_vpc_attachment_ids" { |
| 51 | + description = "List of EC2 Transit Gateway VPC Attachment identifiers" |
| 52 | + value = module.tgw.this_ec2_transit_gateway_vpc_attachment_ids |
| 53 | +} |
| 54 | + |
| 55 | +output "this_ec2_transit_gateway_vpc_attachment" { |
| 56 | + description = "Map of EC2 Transit Gateway VPC Attachment attributes" |
| 57 | + value = module.tgw.this_ec2_transit_gateway_vpc_attachment |
| 58 | +} |
| 59 | + |
| 60 | +// aws_ec2_transit_gateway_route_table_association |
| 61 | +output "this_ec2_transit_gateway_route_table_association_ids" { |
| 62 | + description = "List of EC2 Transit Gateway Route Table Association identifiers" |
| 63 | + value = module.tgw.this_ec2_transit_gateway_route_table_association_ids |
| 64 | +} |
| 65 | + |
| 66 | +output "this_ec2_transit_gateway_route_table_association" { |
| 67 | + description = "Map of EC2 Transit Gateway Route Table Association attributes" |
| 68 | + value = module.tgw.this_ec2_transit_gateway_route_table_association |
| 69 | +} |
| 70 | + |
| 71 | +// aws_ec2_transit_gateway_route_table_propagation |
| 72 | +output "this_ec2_transit_gateway_route_table_propagation_ids" { |
| 73 | + description = "List of EC2 Transit Gateway Route Table Propagation identifiers" |
| 74 | + value = module.tgw.this_ec2_transit_gateway_route_table_propagation_ids |
| 75 | +} |
| 76 | + |
| 77 | +output "this_ec2_transit_gateway_route_table_propagation" { |
| 78 | + description = "Map of EC2 Transit Gateway Route Table Propagation attributes" |
| 79 | + value = module.tgw.this_ec2_transit_gateway_route_table_propagation |
| 80 | +} |
| 81 | + |
| 82 | +// aws_ram_resource_share |
| 83 | +output "this_ram_resource_share_id" { |
| 84 | + description = "The Amazon Resource Name (ARN) of the resource share" |
| 85 | + value = module.tgw.this_ram_resource_share_id |
| 86 | +} |
| 87 | + |
| 88 | +// aws_ram_principal_association |
| 89 | +output "this_ram_principal_association_id" { |
| 90 | + description = "The Amazon Resource Name (ARN) of the Resource Share and the principal, separated by a comma" |
| 91 | + value = module.tgw.this_ram_principal_association_id |
| 92 | +} |
0 commit comments