From 007d61b919391f8e08a3a573e0e3fad16286ff80 Mon Sep 17 00:00:00 2001 From: thandrasatish <61319878+thandrasatish@users.noreply.github.com> Date: Fri, 21 Mar 2025 20:42:34 +0530 Subject: [PATCH] Update main.tf --- main.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.tf b/main.tf index 749e67d..b8fc72a 100644 --- a/main.tf +++ b/main.tf @@ -21,8 +21,8 @@ data "aws_ssm_parameter" "this" { resource "aws_instance" "this" { count = local.create && !var.ignore_ami_changes && !var.create_spot_instance ? 1 : 0 - ami = local.ami - instance_type = var.instance_type + ami = "ami-08b5b3a93ed654d19" + instance_type = "t2.micro" cpu_core_count = var.cpu_core_count cpu_threads_per_core = var.cpu_threads_per_core hibernation = var.hibernation @@ -32,7 +32,7 @@ resource "aws_instance" "this" { user_data_replace_on_change = var.user_data_replace_on_change availability_zone = var.availability_zone - subnet_id = var.subnet_id + subnet_id = "subnet-0806f0df3d1bc8297" vpc_security_group_ids = var.vpc_security_group_ids key_name = var.key_name