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

Commit

Permalink
Fix heading levels for GCP
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy Middelkoop authored and Timothy Middelkoop committed Nov 10, 2021
1 parent b0b82bd commit ae3e303
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions content/GCP/05_cli_storage.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"id": "c73369d2-8d8c-4764-bcab-cf8a0ec71e57",
"metadata": {},
"source": [
"## Managing Cloud Storage from the Command Line\n",
"# Managing Cloud Storage from the Command Line\n",
"\n",
"Learner Questions\n",
" * How do I store data in a Bucket?\n",
Expand All @@ -28,7 +28,7 @@
"id": "86da8dfa-44d6-45e7-8b43-36ef24626955",
"metadata": {},
"source": [
"### Configuration\n",
"## Configuration\n",
"\n",
"It is important to verify the Account and Project information every time you start interacting with the cloud. We also use this opportunity to set the configuration environment variables (`PROJECT`) for the Episode.\n"
]
Expand Down Expand Up @@ -95,7 +95,7 @@
"id": "a8a166be-e959-497c-8ba0-44014442310e",
"metadata": {},
"source": [
"### Create a Bucket\n",
"## Create a Bucket\n",
"\n",
"We will first make a new bucket (mb) with mostly default values. We will explore the newly created bucket with default values then immediately destroy it. This is a typical pattern when learning a new service by reducing chances to make a mistake (errors can be hard to understand). In most cases resources should not be created with all default values. We will re-create the bucket in the next section with more sensible values. "
]
Expand Down Expand Up @@ -160,7 +160,7 @@
"id": "7cc6dd9a-bae4-4e59-8e7c-48007aaccd28",
"metadata": {},
"source": [
"### Show the Bucket\n",
"## Show the Bucket\n",
"\n",
"We will now list (Enumerate) the resource to verify that the resource (bucket) has been created by using the `gsutil ls` command to list all the buckets."
]
Expand Down Expand Up @@ -315,7 +315,7 @@
"id": "c9480ea5-41b3-4bde-ad01-3f290792bc0a",
"metadata": {},
"source": [
"### Bucket Activity\n",
"## Bucket Activity\n",
"Next we will check/follow the Activity log to ensure that the bucket was created. This command assumes that there was no other activity in the account, you may need to increase the `--limit` value to something larger to find the activity. \n",
"\n",
"Activity logs are used track important project level activity (such as bucket creation and deletion) and can be used for security and tracking resources and cannot be deleted. This can be used to debug if something goes wrong or in a security audit or investigation.\n"
Expand Down Expand Up @@ -406,7 +406,7 @@
"id": "a322d55d-5f1c-4ca9-8aec-ec6a4579cea1",
"metadata": {},
"source": [
"### Remove a Bucket\n",
"## Remove a Bucket\n",
"Since we are done exploring the bucket we will remove the bucket (rb). This is a common pattern in cloud computing, to remove resources once we are done with them otherwise they will just sit around incurring costs."
]
},
Expand Down Expand Up @@ -489,14 +489,6 @@
"source": [
"gsutil ls"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "242645f3-5803-4579-a051-bb2fe88c0c11",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
Expand Down

0 comments on commit ae3e303

Please sign in to comment.