Huge Route table, unused parameters aws_route_table

Hi! I am importing several resources, and when I want to describe an aws routing table I find the following format.

resource “aws_route_table” “rtable-c” {
propagating_vgws = [
“vgw-00000000000”,
]
route = [
{
carrier_gateway_id = “”
cidr_block = “0.0.0.0/0”
destination_prefix_list_id = “”
egress_only_gateway_id = “”
gateway_id = “”
instance_id = “”
ipv6_cidr_block = “”
local_gateway_id = “”
nat_gateway_id = “nat-41414141414”
network_interface_id = “”
transit_gateway_id = “”
vpc_endpoint_id = “”
vpc_peering_connection_id = “”
},
{
carrier_gateway_id = “”
cidr_block = “10.101.0.0/16”
destination_prefix_list_id = “”
egress_only_gateway_id = “”
gateway_id = “”
instance_id = “”
ipv6_cidr_block = “”
local_gateway_id = “”
nat_gateway_id = “”
network_interface_id = “”
transit_gateway_id = “”
vpc_endpoint_id = “”
vpc_peering_connection_id = “pcx-123456”
},
{
carrier_gateway_id = “”
cidr_block = “10.102.0.0/16”
destination_prefix_list_id = “”
egress_only_gateway_id = “”
gateway_id = “”
instance_id = “”
ipv6_cidr_block = “”
local_gateway_id = “”
nat_gateway_id = “”
network_interface_id = “”
transit_gateway_id = “”
vpc_endpoint_id = “”
vpc_peering_connection_id = “pcx-1414727452744”
},
{
carrier_gateway_id = “”
cidr_block = “10.103.0.0/16”
destination_prefix_list_id = “”
egress_only_gateway_id = “”
gateway_id = “”
instance_id = “”
ipv6_cidr_block = “”
local_gateway_id = “”
nat_gateway_id = “”
network_interface_id = “”
transit_gateway_id = “”
vpc_endpoint_id = “”
vpc_peering_connection_id = “pcx-454474474”
},
{
carrier_gateway_id = “”
cidr_block = “10.104.0.0/16”
destination_prefix_list_id = “”
egress_only_gateway_id = “”
gateway_id = “”
instance_id = “”
ipv6_cidr_block = “”
local_gateway_id = “”
nat_gateway_id = “”
network_interface_id = “”
transit_gateway_id = “”
vpc_endpoint_id = “”
vpc_peering_connection_id = “pcx-242554454242”
},

etc…etc… etc… (Many more equal lines)

}

Which I see is completely required to have all the described parameters empty. Is there a way or module that can simplify the code?