Is there a way to disable the auto naming of resou...
# azure
w
Is there a way to disable the auto naming of resource groups in Azure? The name property is read only.
m
Hi Gurdip, you can use the
resourceGroupName
property to set your own name. Be sure to read Resource Names, though, to understand the pros and cons.
w
Where are you seeing that property? I have this code: var resourceGroup = new ResourceGroup("child-dev-rg") { };
m
w
Ah thats a different type! got it, I will try it.