From 411305b0eae2c931c1e790afa4fc2054d812d3a2 Mon Sep 17 00:00:00 2001 From: Brunno Soares Date: Fri, 9 Aug 2024 20:30:10 -0300 Subject: [PATCH] Add storage volume resource (#6380) * Update 102-storage-volume.md * Update src/data/roadmaps/aws/content/101-ec2/102-storage-volume.md --------- Co-authored-by: Kamran Ahmed --- src/data/roadmaps/aws/content/101-ec2/102-storage-volume.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/aws/content/101-ec2/102-storage-volume.md b/src/data/roadmaps/aws/content/101-ec2/102-storage-volume.md index e94814775..f736d7c0a 100644 --- a/src/data/roadmaps/aws/content/101-ec2/102-storage-volume.md +++ b/src/data/roadmaps/aws/content/101-ec2/102-storage-volume.md @@ -1,3 +1,7 @@ # Storage / Volumes -In AWS, an `Amazon EBS` (Elastic Block Store) is the storage volume used by EC2 (Elastic Compute Cloud) instances. It is designed for data durability, and Amazon EBS volumes automatically replicate within their Availability Zone to prevent data loss due to failure of any individual component. EBS volumes are attached to an EC2 instance, and appear as a network drive that you can mount and format using the file system of your choice. You can use Amazon EBS as the primary storage for data that requires frequent updates, such as a system drive for an instance or storage for a database application. \ No newline at end of file +In AWS, an `Amazon EBS` (Elastic Block Store) is the storage volume used by EC2 (Elastic Compute Cloud) instances. It is designed for data durability, and Amazon EBS volumes automatically replicate within their Availability Zone to prevent data loss due to failure of any individual component. EBS volumes are attached to an EC2 instance, and appear as a network drive that you can mount and format using the file system of your choice. You can use Amazon EBS as the primary storage for data that requires frequent updates, such as a system drive for an instance or storage for a database application. + +Visit the following resources to learn more: + +- [@official@Elastic Block Store](https://docs.aws.amazon.com/pt_br/ebs/latest/userguide/what-is-ebs.html)