From 944c17f9ad70c510b19b8881c16fca7102c84ef6 Mon Sep 17 00:00:00 2001 From: witch Date: Mon, 16 Jun 2025 18:49:18 -0700 Subject: [PATCH] Finish up lab3 --- lab-3/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lab-3/README.md b/lab-3/README.md index d2f7f40..28a4d94 100644 --- a/lab-3/README.md +++ b/lab-3/README.md @@ -170,6 +170,7 @@ resource "aws_ami_from_instance" "ami_snapshot" { - [x] Launch a new instance from your AMI Terraform is great. Terraform is life. This was really simple to do. + ```sh # Launch new instance from AMI resource "aws_instance" "my_second_linux" { @@ -181,6 +182,7 @@ resource "aws_instance" "my_second_linux" { Name = "labs" } } +``` - [x] Convert to terraform * Terraform files can be found [here](./terraform/main.tf)