An Azure service that provides private and fully managed Remote Desktop Protocol (RDP) and Secure Shell (SSH) access to virtual machines.
Hi Martin,
This error means the subscription is not registered for the required Microsoft.Network feature.
First try registering it:
az feature register \
--namespace Microsoft.Network \
--name AllowBringYourOwnPublicIpAddress
Then check the status:
az feature show \
--namespace Microsoft.Network \
--name AllowBringYourOwnPublicIpAddress
Once it shows Registered, refresh the provider:
az provider register --namespace Microsoft.Network
You need permissions that include Microsoft.Features/*, such as Contributor or Owner, to register subscription features.
If the feature remains Pending, is unavailable for self-registration, or the Bastion deployment still fails afterward, open an Azure Support request against the affected subscription and include the full error and correlation ID.
Also confirm the Bastion public IP is Standard SKU with Static allocation, as required for regular Bastion deployments.