From c4afa5786ad3ba6d25dfc3def2857531f96180aa Mon Sep 17 00:00:00 2001 From: Pedro Moura Date: Mon, 6 Jan 2025 18:10:35 -0300 Subject: [PATCH] Added section about tags Signed-off-by: Pedro Moura --- modules/sysadmin_guide/pages/create-aws-instance.adoc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/modules/sysadmin_guide/pages/create-aws-instance.adoc b/modules/sysadmin_guide/pages/create-aws-instance.adoc index 1a04013..92c8cfd 100644 --- a/modules/sysadmin_guide/pages/create-aws-instance.adoc +++ b/modules/sysadmin_guide/pages/create-aws-instance.adoc @@ -32,6 +32,8 @@ Before starting, ensure you have: - If creating a new one, download and securely store the `.pem` file. - You will need this key to access the instance via SSH. +Note here that if the instance will be managed by ansible there's an ansible key + === 5. Configure Network Settings 1. Ensure the instance is in a **VPC** (Virtual Private Cloud). @@ -49,8 +51,8 @@ Before starting, ensure you have: - Example script to install a web server on Linux: ```bash #!/bin/bash - sudo yum update -y - sudo yum install -y httpd + sudo dnf update -y + sudo dnf install -y httpd sudo systemctl start httpd sudo systemctl enable httpd ``` @@ -81,6 +83,10 @@ Before starting, ensure you have: ssh -i /path/to/your-key.pem ec2-user@Instance-IP ``` +== Tags + +Every new instance must be configured with tags. It is necessary to define at least the "FedoraGroup" tag to associate it with a group in the instance and the storage volume. + == Conclusion Congratulations! You have successfully created and accessed your instance on AWS. Use it as needed for your projects or experiments.