https://pulumi.com logo
Title
e

echoing-dress-72742

11/18/2022, 2:42 PM
hey,
var resourceGroup = new Pulumi.AzureNative.Resources.ResourceGroup("rg-nicolai", new ResourceGroupArgs()
{
    ResourceGroupName = "tst-rg-nicolai",
    Location = "Norway East"

}, new CustomResourceOptions(){Provider =  azProv});
What are the differences here, I mean ResourceGroup(“what are inside here”) And compared to ResourceGroupName
b

billowy-army-68599

11/18/2022, 2:58 PM
the
ResourceGroupName
parameter gives the rg an explicit name. If you don’t set that, the rg will be created with
rg-nicolai-<random suffix>