Openhabian wlan0 interface not found after restore img file to sd card

I’m using Openhabian on Raspberry pi 3, Openhab version 2.2.0 with mosquitto, influxdb and grafana. All modules were installed with openhabian-config and system is working perfect so far. Eth0 ip address is 192.168.1.117 and wlan0 ip address is 192.168.1.129. System is available over both network interfaces. I made a backup img file of existing working system with Win32 Disk Imager, there was no error during reading, verifying and writing img file to another sd card. The system boots up but the problem is that wlan0 is not found when I execute ifconfig command. I checked my sudo /etc/wpa_supplicant/wpa_supplicant.conf file and it seems ok to me:

sudo cat /etc/wpa_supplicant/wpa_supplicant.conf
# config generated by openHABian first boot setup
country=US
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
        ssid="mySSID"
        psk="mypassword"
        key_mgmt=WPA-PSK
}

How could I solve this problem ?