Skip to content
This repository was archived by the owner on Dec 12, 2025. It is now read-only.

Commit

Permalink
updated Cleaning Up Resources
Browse files Browse the repository at this point in the history
  • Loading branch information
jhicks committed Mar 7, 2022
1 parent a4eca55 commit 5322752
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 23 deletions.
8 changes: 4 additions & 4 deletions content/Azure/06_running_analysis.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -144,15 +144,15 @@
},
{
"cell_type": "markdown",
"id": "fd30a9c7",
"id": "6f29b53d",
"metadata": {},
"source": [
"Verify that *landsat-hls-azure.py* & *setup.sh* are listed."
]
},
{
"cell_type": "markdown",
"id": "8107e780",
"id": "bd671a7b",
"metadata": {},
"source": [
"Run the *setup.sh* file to setup the environment by installing the \n",
Expand Down Expand Up @@ -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)"
]
},
{
Expand Down
31 changes: 12 additions & 19 deletions content/Azure/08_cleaning_up_resources.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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."
]
},
{
Expand All @@ -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"
]
Expand Down

0 comments on commit 5322752

Please sign in to comment.