|
2 | 2 |
|
3 | 3 | ### AWS Exercises
|
4 | 4 |
|
| 5 | +Note: Provided solutions are using the AWS console. It's recommended you'll use IaC technologies to solve the exercises (e.g. Terraform). |
| 6 | + |
5 | 7 | #### AWS - IAM
|
6 | 8 |
|
7 | 9 | |Name|Topic|Objective & Instructions|Solution|Comments|
|
@@ -455,6 +457,54 @@ It is mostly used for cache and temporary data purposes.
|
455 | 457 | Yes, the data on instance store is lost when they are stopped.
|
456 | 458 | </b></details>
|
457 | 459 |
|
| 460 | +##### AWS Storage - EFS |
| 461 | + |
| 462 | +<details> |
| 463 | +<summary>What is Amazon EFS?</summary><br><b> |
| 464 | + |
| 465 | +[AWS Docs](https://aws.amazon.com/efs): "Amazon Elastic File System (Amazon EFS) provides a simple, scalable, fully managed elastic NFS file system for use with AWS Cloud services and on-premises resources." |
| 466 | + |
| 467 | +In simpler words, it's a network file system you can mount on one or more EC2 instances. |
| 468 | +</b></details> |
| 469 | + |
| 470 | +<details> |
| 471 | +<summary>True or False? EFS is locked into a single availability zone</summary><br><b> |
| 472 | + |
| 473 | +False. EFS can be mounted across multiple availability zones. |
| 474 | +</b></details> |
| 475 | + |
| 476 | +<details> |
| 477 | +<summary>What are some use cases for using EFS?</summary><br><b> |
| 478 | + |
| 479 | +* Data sharing (e.g. developers working on the same source control) |
| 480 | +* Web serving |
| 481 | +* Content management |
| 482 | +</b></details> |
| 483 | + |
| 484 | +<details> |
| 485 | +<summary>True or False? EFS only compatible with Linux based AMI</summary><br><b> |
| 486 | + |
| 487 | +True |
| 488 | +</b></details> |
| 489 | + |
| 490 | +<details> |
| 491 | +<summary>True or False? EFS requires the user to perform capacity planning as it doesn't scales automatically</summary><br><b> |
| 492 | + |
| 493 | +False. EFS scales automatically and you pay-per-use. |
| 494 | +</b></details> |
| 495 | + |
| 496 | +<details> |
| 497 | +<summary>Which EFS mode would you use if need maximum throughput?</summary><br><b> |
| 498 | + |
| 499 | +Performance Mode (Max I/O): This provides high throughput and it's used for big data, media processing, etc. |
| 500 | +</b></details> |
| 501 | + |
| 502 | +<details> |
| 503 | +<summary>What is the default EFS mode?</summary><br><b> |
| 504 | + |
| 505 | +Performance Mode (General Purpose): Used for web servers, CMS, etc. |
| 506 | +</b></details> |
| 507 | + |
458 | 508 | ##### AWS EC2 - Pricing Models
|
459 | 509 |
|
460 | 510 | <details>
|
@@ -938,14 +988,6 @@ Learn more [here](https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-accel
|
938 | 988 | <summary>What storage options are there for EC2 Instances?</summary><br><b>
|
939 | 989 | </b></details>
|
940 | 990 |
|
941 |
| -<details> |
942 |
| -<summary>What is Amazon EFS?</summary><br><b> |
943 |
| - |
944 |
| -Amazon definition: "Amazon Elastic File System (Amazon EFS) provides a simple, scalable, fully managed elastic NFS file system for use with AWS Cloud services and on-premises resources." |
945 |
| - |
946 |
| -Learn more [here](https://aws.amazon.com/efs) |
947 |
| -</b></details> |
948 |
| - |
949 | 991 | <details>
|
950 | 992 | <summary>What is AWS Snowmobile?</summary><br><b>
|
951 | 993 |
|
|
0 commit comments