From 5322752bfe7788185d8bbd82ec40bf14311a190b Mon Sep 17 00:00:00 2001 From: John Hicks Date: Mon, 7 Mar 2022 00:30:06 -0500 Subject: [PATCH] updated Cleaning Up Resources --- content/Azure/06_running_analysis.ipynb | 8 ++--- content/Azure/08_cleaning_up_resources.ipynb | 31 ++++++++------------ 2 files changed, 16 insertions(+), 23 deletions(-) diff --git a/content/Azure/06_running_analysis.ipynb b/content/Azure/06_running_analysis.ipynb index b92732b..e0e6434 100644 --- a/content/Azure/06_running_analysis.ipynb +++ b/content/Azure/06_running_analysis.ipynb @@ -144,7 +144,7 @@ }, { "cell_type": "markdown", - "id": "fd30a9c7", + "id": "6f29b53d", "metadata": {}, "source": [ "Verify that *landsat-hls-azure.py* & *setup.sh* are listed." @@ -152,7 +152,7 @@ }, { "cell_type": "markdown", - "id": "8107e780", + "id": "bd671a7b", "metadata": {}, "source": [ "Run the *setup.sh* file to setup the environment by installing the \n", @@ -278,10 +278,10 @@ }, { "cell_type": "markdown", - "id": "467ad988", + "id": "f953a9ad", "metadata": {}, "source": [ - "Now delete the blob (image,png file)" + "Now delete the blob (image.png file)" ] }, { diff --git a/content/Azure/08_cleaning_up_resources.ipynb b/content/Azure/08_cleaning_up_resources.ipynb index caf6ee0..e10726d 100644 --- a/content/Azure/08_cleaning_up_resources.ipynb +++ b/content/Azure/08_cleaning_up_resources.ipynb @@ -24,23 +24,12 @@ }, { "cell_type": "markdown", - "id": "1377081d-7da5-4088-8ba9-966f297af1d6", + "id": "b5509da0", "metadata": {}, "source": [ "## Remove Resource Group\n", "\n", - "Removing a resource group removes all the resources associated with the resource group.\n", - "\n", - "**WARNING: This will remove all resources (virtual machines, storage buckets, etc.) from the `rg-essentials` resource group!**" - ] - }, - { - "cell_type": "markdown", - "id": "7171ff08", - "metadata": {}, - "source": [ - "RG=rg-essentials\n", - "echo $RG" + "Removing a resource group removes all the resources associated with the resource group." ] }, { @@ -52,27 +41,31 @@ ] }, { - "cell_type": "markdown", - "id": "b5d3261e", + "cell_type": "code", + "execution_count": null, + "id": "2b14f17c", "metadata": {}, + "outputs": [], "source": [ "az vm list --resource-group $RG --output table" ] }, { "cell_type": "markdown", - "id": "8ada5056-3963-4ca0-9250-ac0e6dc8aba8", + "id": "96e26725", "metadata": {}, "source": [ "Remove Resource Group. Note, this will take many seconds.\n", "\n", - "**WARNING: This will remove all resources (virtual machines, storage buckets, etc.) from the `rg-essentials` resource group!**" + "**WARNING: This will remove all resources (virtual machines, storage buckets, etc.) from your resource group!**" ] }, { - "cell_type": "markdown", - "id": "92c8ae09", + "cell_type": "code", + "execution_count": null, + "id": "911937bf", "metadata": {}, + "outputs": [], "source": [ "az group delete --resource-group $RG --yes" ]