silly-wolf-89548
08/13/2024, 2:48 PMconfig = pulumi.Config()
subscription_id = config.require("subscriptionId")
# Create an Azure provider
provider = azure.Provider("azure", subscription_id=subscription_id)
# Define a resource group
resource_group = azure.core.ResourceGroup( "example-resources", name="example-resources", location="West Europe", opts=pulumi.ResourceOptions(provider=provider) )
then pulumi try to delete and create the resource which is not something we want (will error)
Is there a better way to import this resource without deleting?