mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 23:23:59 -06:00
15 lines
328 B
Terraform
15 lines
328 B
Terraform
|
output "route_table_id" {
|
||
|
value = "${alicloud_route_entry.default.route_table_id}"
|
||
|
}
|
||
|
|
||
|
output "router_id" {
|
||
|
value = "${alicloud_route_entry.default.router_id}"
|
||
|
}
|
||
|
|
||
|
output "nexthop_type" {
|
||
|
value = "${alicloud_route_entry.default.nexthop_type}"
|
||
|
}
|
||
|
|
||
|
output "nexthop_id" {
|
||
|
value = "${alicloud_route_entry.default.nexthop_id}"
|
||
|
}
|