From 6014f77efcc55945c8c308cd02cc240e85d480bb Mon Sep 17 00:00:00 2001 From: Marcello Calisto Date: Sun, 5 Nov 2023 21:31:01 +0100 Subject: [PATCH] KN07 Draft C --- KN07/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/KN07/README.md b/KN07/README.md index 524bb41..6fe50ab 100644 --- a/KN07/README.md +++ b/KN07/README.md @@ -83,6 +83,16 @@ Zuerst muss ein sogenanntes **IAM Instance Profile** erstellt werden. Beim näch 8. Bei **Advanced details** muss unter `IAM Instance profile` das oben (oder früher) erstellte Profil **S3ReadOnly** ausgewählt werden. Damit stellen Sie sicher, dass die Instanz bei der Installation auf den S3-Bucket zugreifen kann, wo das HTML Indexfile abgelegt ist. 9. Ebenfalls bei **Advanced details** unter **user data** wird folgender Code eingetragen: +```bash +#!/bin/bash +yum update -y +yum install -y httpd +systemctl start httpd +systemctl enable httpd +aws s3 cp s3:///ami-test.txt /var/www/html/index.html +``` + + 10. Starten Sie die Instanz mit **Launch instance**.