From 1c76ab0c676814dc0d08d14c73679c3982b9c3ed Mon Sep 17 00:00:00 2001 From: Simon Kurtz Date: Fri, 7 Feb 2025 07:57:05 -0500 Subject: [PATCH] Fix the resource group name --- labs/zero-to-production/zero-to-production.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs/zero-to-production/zero-to-production.ipynb b/labs/zero-to-production/zero-to-production.ipynb index cc648e1..63cf901 100644 --- a/labs/zero-to-production/zero-to-production.ipynb +++ b/labs/zero-to-production/zero-to-production.ipynb @@ -43,7 +43,7 @@ "import utils\n", "\n", "deployment_name = os.path.basename(os.path.dirname(globals()['__vsc_ipynb_file__']))\n", - "resource_group_name = f\"lab-{deployment_name}-f1\" # change the name to match your naming style\n", + "resource_group_name = f\"lab-{deployment_name}\" # change the name to match your naming style\n", "resource_group_location = \"eastus2\"\n", "\n", "apim_sku = 'Basicv2'\n",