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" }