From b40a7e3f0b4a8b8ba9a29d9a9bcdbb144e69927b Mon Sep 17 00:00:00 2001 From: lolli001 Date: Fri, 19 Jul 2024 16:19:08 -0400 Subject: [PATCH] Updated AMI --- main.tf | 4 ++-- modules/image-pipeline/build.pkr.hcl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/main.tf b/main.tf index 5ff36f6..4314491 100644 --- a/main.tf +++ b/main.tf @@ -142,8 +142,8 @@ module "rhel-arm" { goss_profile = "rhel-arm-base-test" state = local.state_config vpc_config = local.vpc_config - source_ami = "ami-06ac1fe9004042996" # Updated AMI ID for RHEL 9 ARM - instance_type = "t4g.micro" # Ensure the instance type is ARM64 compatible + source_ami = "ami-0fac797136d219c79" # Updated AMI ID for RHEL 9 ARM + instance_type = "t3.micro" # Ensure the instance type is ARM64 compatible } diff --git a/modules/image-pipeline/build.pkr.hcl b/modules/image-pipeline/build.pkr.hcl index 8a66da3..b24e3e6 100644 --- a/modules/image-pipeline/build.pkr.hcl +++ b/modules/image-pipeline/build.pkr.hcl @@ -2,7 +2,7 @@ source "amazon-ebs" "rhel" { ami_name = "rhel-arm-{{timestamp}}" instance_type = "t4g.micro" region = "us-gov-west-1" - source_ami = "ami-06ac1fe9004042996" # Updated AMI ID for RHEL 9 ARM + source_ami = "ami-0fac797136d219c79" # Updated AMI ID for RHEL 9 ARM ssh_username = "ec2-user" }