Pulumi import existing Azure ResourceGroup to Azure Core

250 views Asked by At

We have a Resource Group in Azure. We created this resource using the following code:

 private Pulumi.Azure.Core.ResourceGroup CreateResourceGroup(string resourceGroupName)
    {
        return new Pulumi.Azure.Core.ResourceGroup(resourceGroupName,
            new Pulumi.Azure.Core.ResourceGroupArgs
            {
                Name = resourceGroupName,
                Location = "westeurope"
            });
    }
CreateResourceGroup("rg-magic-apps");

Now we need to import this structure to a completely new stack (the old stack is NOT available anymore) so our only way is to import that resourcegroup.

Following the pulumi documentation we tried

pulumi import azure:core/resourceGroup:ResourceGroup /subscriptions/{subscriptionid}/resourceGroups/rg-magic-apps

but received

error: an inline resource must be specified if no import file is used

Is there a parameter missing?

1

There are 1 answers

0
Evan On

You are missing the name of the resource group before the subscription.

pulumi import azure:core/resourceGroup:ResourceGroup rg-magic-apps /subscriptions/{subscriptionid}/resourceGroups/rg-magic-apps