From e35d74b50dc2fbcf5ab697f8706c5f8dd56224d0 Mon Sep 17 00:00:00 2001 From: Vitor Hideyoshi Date: Thu, 12 Oct 2023 09:29:00 -0300 Subject: [PATCH] Reduces Cost with t2.micro Workers --- instances/instance.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instances/instance.tf b/instances/instance.tf index b128705..bf6c8c6 100644 --- a/instances/instance.tf +++ b/instances/instance.tf @@ -109,7 +109,7 @@ resource "aws_instance" "main" { resource "aws_instance" "worker" { ami = "ami-0af6e9042ea5a4e3e" - instance_type = "t3a.small" + instance_type = "t2.micro" vpc_security_group_ids = [ aws_security_group.project_pool.id ] count = var.number_of_workers