-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
40 lines (34 loc) · 1.47 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
################################################################################
## TRANSIT GATEWAY ##
################################################################################
output "arn" {
description = "EC2 Transit Gateway Amazon Resource Name (ARN)."
value = try(aws_ec2_transit_gateway.this[0].arn, null)
}
output "association_default_route_table_id" {
description = "Identifier of the default association route table."
value = try(aws_ec2_transit_gateway.this[0].association_default_route_table_id, null)
}
output "id" {
description = "EC2 Transit Gateway identifier."
value = try(aws_ec2_transit_gateway.this[0].id, null)
}
output "owner_id" {
description = "Identifier of the AWS account that owns the EC2 Transit Gateway."
value = try(aws_ec2_transit_gateway.this[0].owner_id, null)
}
output "propagation_default_route_table_id" {
description = "Identifier of the AWS account that owns the EC2 Transit Gateway."
value = try(aws_ec2_transit_gateway.this[0].propagation_default_route_table_id, null)
}
output "tags_all" {
description = <<-EOT
A map of tags assigned to the resource, including those inherited from the
provider `default_tags` configuration block.
EOT
value = try(aws_ec2_transit_gateway.this[0].tags_all, null)
}
output "tgw_all" {
description = "A map of TGW attributes."
value = try(aws_ec2_transit_gateway.this[0], null)
}