redirect to internal servers

Just bought a rb 1000 and so far GREAT product. Have had less than a week and in love.

I have a question about redirecting ports to internal servers.

I have come from OpenBSD’s pf and got use to “macros” for just about everything to simplify writing rules.
example
tech = “10.1.1.0/24, 10.2.2.0/24”
services = “{ 80, 443, 5071, 7880 }”
ps_tcp = “{ 407, 1417, 1418, 1419, 1420 }”
ps_udp = “{ 407, 1417, 1418, 1419, 1420 }”

redirect from any to x.x.x.x port $services → in.te.rn.al
redirect from any to x.x.x.x port $ps_tcp → in.te.rn.al
redirect from any to x.x.x.x port $ps_udp → in.te.rn.al
allow from all to x.x.x.x port $services
allow from $tech to x.x.x.x port $ps_tcp
allow from $tech to x.x.x.x port $ps_udp

and pf would expand this to the many different rules

I have found the address list. But is there a way to “group” ports or do
I have to manually make each redirect rule

Thanks
Tom