Is possible to bridge wlan0 and eth0 using network manager?How to for wpa?

I have created a bridge with nmcli between eth0 and wlan0

I use this procedure

sudo nmcli con add ifname br0 type bridge con-name br0
sudo nmcli con add type bridge-slave ifname eth0 master br0
sudo nmcli con add type bridge-slave ifname wlan0 master br0
sudo nmcli con modify br0 bridge.stp no
sudo nmcli con down eth0
sudo nmcli con down wlan0
sudo nmcli up br0

The bridge works,i can ping is ipv4 address..but..how to do for wpa2?
I prefer to use nmcli.

Solution found: the bridge is created,but doesn't work.
Instead of bridge wlan and eth I create a network virtual wich point to wlan0 with virt-manager.
Works fine