I want to be able to set which port to use for ssh forwarding when running up kitchen converge.
I added the forwarded_port lines to .kitchen.yml:
---
driver:
name: vagrant
network:·
- ["forwarded_port", {guest: 22, host: 2223}]
But kitchen still uses the default port for ssh:
~/D/octopress git:source ❯❯❯ netstat -n -p tcp | grep 22
....
tcp4 0 0 127.0.0.1.2200 127.0.0.1.59456 ESTABLISHED
tcp4 0 0 127.0.0.1.59456 127.0.0.1.2200 ESTABLISHED
Apparently a mapping is created but kitchen is not using it.

I have checked chef website and this page does not provide more in-depth info
How can I override the default ssh port?