This module provides a transit gateway route table static entry.
Manage a Transit Gateway Route Table static route table entry.
Example:
module "aws_tgw_route_table-route" {
source = "git::https://github.com/khateeb15/terraform-aws-transitgateway-route-table-route"
destination_cidr = "0.0.0.0/0"
tgw_route_table = module.tgw.route_table_id
transit_gateway_attachment_id = module.tgw.attachment_id
}
Name | Description | Type | Default | Required |
---|---|---|---|---|
destination_cidr | CIDR for route | string | n/a | yes |
tgw_route_table | Transit Gateway Route Table where the route will be deployed | n/a | yes | |
transit_gateway_attachment_id | Transit Gateway Attachement ID | string | n/a | yes |