-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fixed tfcheks and defsec warnings
- Loading branch information
Showing
4 changed files
with
18 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,44 @@ | ||
output "transit_gateway_id" { | ||
value = module.transit-gateway[*].transit_gateway_id | ||
value = module.transit_gateway[*].transit_gateway_id | ||
description = "The ID of the transit-gateway." | ||
} | ||
|
||
output "tags" { | ||
value = module.transit-gateway.tags | ||
value = module.transit_gateway.tags | ||
description = "A mapping of tags to assign to the transit-gateway." | ||
} | ||
|
||
output "ec2_transit_gateway_arn" { | ||
value = module.transit-gateway.ec2_transit_gateway_arn | ||
value = module.transit_gateway.ec2_transit_gateway_arn | ||
description = "EC2 Transit Gateway Amazon Resource Name (ARN)" | ||
} | ||
|
||
output "ec2_transit_gateway_route_table_id" { | ||
value = module.transit-gateway.ec2_transit_gateway_route_table_id | ||
value = module.transit_gateway.ec2_transit_gateway_route_table_id | ||
description = "EC2 Transit Gateway Route Table identifier" | ||
} | ||
|
||
output "ec2_transit_gateway_owner_id" { | ||
value = module.transit-gateway.ec2_transit_gateway_owner_id | ||
value = module.transit_gateway.ec2_transit_gateway_owner_id | ||
description = "Identifier of the AWS account that owns the EC2 Transit Gateway" | ||
} | ||
|
||
output "ec2_transit_gateway_association_default_route_table_id" { | ||
value = module.transit-gateway.ec2_transit_gateway_association_default_route_table_id | ||
value = module.transit_gateway.ec2_transit_gateway_association_default_route_table_id | ||
description = "Identifier of the default association route table" | ||
} | ||
|
||
output "ec2_transit_gateway_vpc_attachment_ids" { | ||
value = module.transit-gateway.ec2_transit_gateway_vpc_attachment_ids | ||
value = module.transit_gateway.ec2_transit_gateway_vpc_attachment_ids | ||
description = "List of EC2 Transit Gateway VPC Attachment identifiers" | ||
} | ||
|
||
output "ram_resource_share_id" { | ||
value = module.transit-gateway.ram_resource_share_id | ||
value = module.transit_gateway.ram_resource_share_id | ||
description = "The Amazon Resource Name (ARN) of the resource share" | ||
} | ||
|
||
output "resource_share_arn" { | ||
value = module.transit-gateway.resource_share_arn | ||
value = module.transit_gateway.resource_share_arn | ||
description = "The ARN of the RAM." | ||
} |