From 4fadf45a09b8e8b4ef80c437246c2393e7fece54 Mon Sep 17 00:00:00 2001 From: Flavius Dinu <57911064+flavius-dinu@users.noreply.github.com> Date: Wed, 26 Mar 2025 13:27:29 +0200 Subject: [PATCH] Update main.tf --- tf/main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tf/main.tf b/tf/main.tf index 27f636c..bf9948a 100644 --- a/tf/main.tf +++ b/tf/main.tf @@ -32,6 +32,10 @@ locals { ami = data.aws_ami.ubuntu.id instance_type = "t2.micro" } + instance3 = { + ami = data.aws_ami.ubuntu.id + instance_type = "t2.micro" + } } }