I am attempting use the Device Provisioning Service on NRF9160DK with Azure IOT hub. I am using the connect SDK version 2.0.2. I can connect to IOT hub and log messages without the Device Provisioning Service. But when I enable the Device Provisioning Service in prj.conf and run the west build command in bash, I get this error

Here are the Device Provisioning Service settings in my prj.conf.
CONFIG_AZURE_IOT_HUB=y
CONFIG_AZURE_IOT_HUB_DEVICE_ID="mydeviceID"
# Host name must be configured if DPS is not used
CONFIG_AZURE_IOT_HUB_HOSTNAME="myIOTHub.azure-devices.net"
# Change the security tag to the tag where Azure IoT Hub certificates
# are provisioned
CONFIG_AZURE_IOT_HUB_SEC_TAG=99
# Uncomment and configure the options below to use DPS for device provisioning
CONFIG_AZURE_IOT_HUB_DPS=y
CONFIG_AZURE_IOT_HUB_DPS_ID_SCOPE="myDPSScopeID"
Can you help us in enabling the Device Provisioning Service in prj.conf and run the west build command in bash?