Microsoft.Network is a major Azure component with various sub features like AllowILBUseDelegatedSubnet
. These sub features need to be explicitly enabled to use specific capabilities
Please follow below steps, please do it via cli you should be able to successfully do this.
Register the Feature:
1.To enable a specific feature, in this case, AllowILBUseDelegatedSubnet
, for Microsoft.Network, use the Azure CLI command below:
az feature register --name AllowILBUseDelegatedSubnet --namespace Microsoft.Network
2.Below is the command to check it is enabled or not
az feature show --name AllowILBUseDelegatedSubnet --namespace Microsoft.Network
Hope this answers your question. Let us know if you need any further assistance
Please provide your valuable comments and let me know how it goes.
Thankyou
Let me know how it goes.