Skip to content

Commit fc147b5

Browse files
committed
fixing data
1 parent 5516855 commit fc147b5

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

docs/setup/index.mdx

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ sidebar_position: 2
1313
**Important! Each code block is marked with a number associated to the tutorial here.**
1414
:::
1515

16-
:::
16+
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/mongodb-developer/security-lab-notebooks/blob/main/template_notebook.ipynb)
17+
18+
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?hide_repo_select=true&ref=main&repo=mongodb-developer/security-lab-notebooks)
1719

1820
This section will cover the required notebook operations that must be fulfilled to run the Challenges.
1921

@@ -29,7 +31,7 @@ This section will cover the required notebook operations that must be fulfilled
2931
## !sudo dpkg -i mongodb-atlas-cli_1.31.0_linux_x86_64.deb
3032
```
3133

32-
### 2. Authenticate the CLI against your Atlas organization.**
34+
### 2. Authenticate the CLI against your Atlas organization.
3335
```python
3436
# CODE_BLOCK_2
3537
# Authenticate with Atlas CLI
@@ -80,21 +82,21 @@ Take a note of the relevant Organization ID for next steps and "STOP" the cell.
8082

8183
:::
8284

83-
### 3. Create a new project called "MySecureProj"
85+
### 3. Create a new project called "MySecureProj" on your orgonisation of choice
8486
```
8587
# CODE_BLOCK_3
86-
import getpass
87-
88-
org_id = getpass.getpass('Enter your org ID: ')
88+
org_id = "<ORGANIZATION_ID>"
8989
!atlas projects create MySecureProj --orgId {org_id}
9090
```
9191

92+
This cell should print out the project id you need for the next step.
93+
9294
> **Hint!** : Some notebook environments will need the getpass installation command `!pip install getpass`
9395
9496
### 4. Create your challenge cluster
9597
```python
9698
# CODE_BLOCK_4
97-
project_id = getpass.getpass('Enter your project ID: ')
99+
project_id = "<PROJECT_ID>"
98100
!atlas clusters create MyNewCluster --provider AWS --region US_EAST_1 --tier M0 --projectId {project_id}
99101
```
100102

sidebars.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const sidebars = {
1313
{
1414
type: 'doc',
1515
id: 'setup/index',
16-
label: 'Run: Initial Setup',
16+
label: '👐 Run: Initial Setup',
1717
},
1818
{
1919
type: 'doc',
@@ -23,7 +23,7 @@ const sidebars = {
2323
{
2424
type: 'doc',
2525
id: 'challenge/network',
26-
label : 'Run: Setup Network Access'
26+
label : '👐 Run: Setup Network Access'
2727
}]
2828
},
2929
{
@@ -37,7 +37,7 @@ const sidebars = {
3737
{
3838
type: 'doc',
3939
id: 'challenge/authentication',
40-
label: 'Run: Setup Authentication',
40+
label: '👐 Run: Setup Authentication',
4141
}
4242
]},
4343
{
@@ -52,7 +52,7 @@ const sidebars = {
5252
{
5353
type: 'doc',
5454
id: 'challenge/rbac',
55-
label: 'Run: Setup RBAC',
55+
label: '👐 Run: Setup RBAC',
5656
},
5757
],
5858
},
@@ -68,7 +68,7 @@ const sidebars = {
6868
{
6969
type: 'doc',
7070
id: 'challenge/queryable-encryption',
71-
label: 'Run: Setup Queryable Encryption',
71+
label: '👐 Run: Setup Queryable Encryption',
7272
},
7373
],
7474
},

0 commit comments

Comments
 (0)