From 67966c52620365eb1a1196ea5c9fbea3f71f1ef4 Mon Sep 17 00:00:00 2001 From: arnol377 Date: Mon, 6 Jan 2025 15:12:49 -0500 Subject: [PATCH] Update instance type in morpheus.tf --- morpheus.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morpheus.tf b/morpheus.tf index 4a909a6..70b657a 100644 --- a/morpheus.tf +++ b/morpheus.tf @@ -40,6 +40,6 @@ module "morpheus" { vpc_config = local.vpc_config ami = { source_ami = var.use_rhel9_ami ? one(data.aws_ssm_parameter.rhel9_ami).value : local.morpheus_ami - instance_type = "t3.micro" # x86_64 compatible instance type + instance_type = "m5.xlarge" # x86_64 compatible instance type } }