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?No matter how you like to participate in developer communities, Pulumi wants to meet you there. If you want to meet other Pulumi users to share use-cases and best practices, contribute code or documentation, see us at an event, or just tell a story about something cool you did with Pulumi, you are part of our community.
Powered by