Skip to content

Commit 765d2a8

Browse files
authored
Expand prereqs
2 parents e555993 + b0ac427 commit 765d2a8

File tree

3 files changed

+50
-35
lines changed

3 files changed

+50
-35
lines changed

docs/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ Two labs are available. The two labs are independent. However, the first lab is
1919
In [Lab 1](./part1/00-objectives), you take the perspective of a cloud infrastructure engineer:
2020

2121
1. Use the [landing zone deployable architecture](https://cloud.ibm.com/docs/secure-infrastructure-vpc?topic=secure-infrastructure-vpc-overview) to automatically deploy a secure VPC-based topology in an IBM Cloud account.
22-
2. Manually customize the deployed infrastructure in the account in the following ways:
23-
a. Provide operator access through a "jump box" VSI.
24-
b. Install an Apache server in one of the workload VPCs that serves the web pages.
22+
2. Manually customize the deployed infrastructure in the account in the following ways: \
23+
a. Provide operator access through a "jump box" VSI. \
24+
b. Install an Apache server in one of the workload VPCs that serves the web pages. \
2525
c. Expose the web pages that are served by the Apache server through a public VPC load balancer.
2626

2727
In [Lab 2](./part2/00-objectives), you are a DevOps/automation engineer:

docs/prereqs.md

+46-31
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,51 @@
1-
# Lab Prerequisites :white_check_mark:
1+
# Lab Prerequisites
22

33
Make sure that you meet the following prerequisites before you begin the lab.
44

5-
- IBM Cloud
6-
- An IBM Cloud Pay-Go or Subscription account
7-
- An IBMid
8-
9-
:information_source: **Note**: Participants in the TechXchange classroom will be provided with credentials to access an IBM Cloud account during the lab.
10-
- [API key with the following permissions](https://cloud.ibm.com/docs/account?topic=account-userapikey&interface=ui#create_user_key)
11-
12-
| Service | Resources | Role |
13-
| -------- | ------- | ------- |
14-
| IBM Cloud Projects | Aldministrator |
15-
| Activity Tracker event routing | All | Editor |
16-
| Transit Gateway | All | Editor, Manager |
17-
| Schematics | All | Editor, Manager |
18-
| Key Protect | All | Editor, KeyPurge, Manager |
19-
| Cloud Object Storage | All | Editor, Manager |
20-
| VPC Infrastructure Services | All | Editor, Manager |
21-
| Resource group only | All resource group in the account | Viewer, Editor, Administrator|
22-
23-
:exclamation: **Important**: Participants in the TechXchange classroom will need to create an API key for their provided credentials. Please save the generated API key for later use.
24-
25-
- A development computer with the following software.
26-
- [Terraform](https://developer.hashicorp.com/terraform/tutorials/aws-get-started/install-cli)
27-
- Text editor of your choice
28-
- Web browser
29-
- Tools to generate SSH key
30-
- Linux and Mac come with ssh-keygen.
31-
- Windows users can use [PuTTYgen](https://www.ssh.com/academy/ssh/putty/windows/puttygen)
32-
33-
For more information, see [Generating an external SSH key](https://cloud.ibm.com/docs/vpc?topic=vpc-ssh-keys&interface=ui#generating-ssh-keys).
5+
## IBM Cloud
6+
7+
1. An IBM Cloud Pay-Go or Subscription account (trial accounts are not sufficient)
8+
9+
:information_source: **Note**: Participants in the TechXchange lab will be provided with user credentials to access a paid IBM Cloud account for the duration of the lab.
10+
11+
:exclamation: **Important**: If you are an existing active user of IBM Cloud, and if you are provided with user credentials for this lab, ensure that you do not have an existing active session on [cloud.ibm.com](https://cloud.ibm.com) using your own credentials prior to accessing the provided login page. If needed, log out from your existing session (top right icon in the IBM Cloud Console -> Log out) first.
12+
13+
2. A personal API Key associated with a user with the following permissions.
14+
15+
:information_source: **Note**: The user account provided in the TechXchange lab already has got the necessary permissions. Participants in the TechXchange lab only need to create an API Key as described below.
16+
17+
18+
| Service | Resources | Role |
19+
| -------- | ------- | ------- |
20+
| IBM Cloud Projects | All | Administrator |
21+
| Activity Tracker event routing | All | Editor |
22+
| Transit Gateway | All | Editor, Manager |
23+
| Schematics | All | Editor, Manager |
24+
| Key Protect | All | Editor, KeyPurge, Manager |
25+
| Cloud Object Storage | All | Editor, Manager |
26+
| VPC Infrastructure Services | All | Editor, Manager |
27+
| Resource group only | All resource group in the account | Viewer, Editor, Administrator|
28+
| Catalog Management | All | Editor, Publisher|
29+
30+
31+
To create an API Key: \
32+
1. In the IBM Cloud console, go to **Manage > Access (IAM) > API keys.** \
33+
2. Click **Create an IBM Cloud API key**. \
34+
3. Enter a name and description for your API key. \
35+
4. Click **Create** \
36+
5. Then, click **Show** to display the API key.
37+
38+
:exclamation: **Important**: Please save the generated API key for later use in the labs. The API key is only available to be copied or downloaded at the time of creation. If the API key is lost, you can re-create a new API key.
39+
40+
## Development environment
41+
42+
A development computer with the following software:
43+
- [Terraform](https://developer.hashicorp.com/terraform/tutorials/aws-get-started/install-cli)
44+
- Text editor of your choice
45+
- Web browser
46+
- Tools to generate SSH key
47+
- Linux and Mac come with ssh-keygen.
48+
- Windows users can use [PuTTYgen](https://www.ssh.com/academy/ssh/putty/windows/puttygen)
3449
- Optional: [IBM Cloud CLI](https://cloud.ibm.com/docs/cli?topic=cli-getting-started)
3550

36-
:information_source: **Note**: Participants in the TechXchange classroom will be provided with a development VM with the prerequisite software installed.
51+
:information_source: **Note**: Participants in the TechXchange classroom will be provided with a development VM with the prerequisite software installed. You may however decide to use your own machine for convenience.

docs/sidebar.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
- [🌍 VPC Landing Zone](./about/20-vpc-landing-zone.md)
44
- [🏗️ Deployable architectures](./about/30-deployable-arch)
55
- [📚 IBM Cloud projects](./about/40-projects.md)
6-
- [📂 Lab Prerequisites](./prereqs.md)
6+
- [ Lab Prerequisites](./prereqs.md)
77
- [📂 Lab 1 - End-to-end deployment](./part1/00-objectives.md)
88
- [🚀 Deploy the landing zone VSI pattern](./part1/10-project.md)
99
- [👤 Operator Access](./part1/20-operator-access.md)

0 commit comments

Comments
 (0)