https://pulumi.com logo
#azure
Title
w

witty-vegetable-61961

07/19/2023, 3:36 PM
Is there a way to disable the auto naming of resource groups in Azure? The name property is read only.
m

melodic-tomato-39005

07/19/2023, 4:13 PM
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

witty-vegetable-61961

07/19/2023, 4:19 PM
Where are you seeing that property? I have this code: var resourceGroup = new ResourceGroup("child-dev-rg") { };
m

melodic-tomato-39005

07/19/2023, 4:21 PM
w

witty-vegetable-61961

07/19/2023, 4:22 PM
Ah thats a different type! got it, I will try it.