diff --git a/main.tf b/main.tf index 694be33..7e31615 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-014172793a1595e6c" # Updated AMI ID for RHEL 9 ARM - instance_type = "t4g.micro" # Ensure the instance type is ARM64 compatible + source_ami = "ami-03f5c6b8195c66b04" # 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 f8f1b07..4c13377 100644 --- a/modules/image-pipeline/build.pkr.hcl +++ b/modules/image-pipeline/build.pkr.hcl @@ -1,8 +1,8 @@ source "amazon-ebs" "rhel" { ami_name = "rhel-arm-{{timestamp}}" - instance_type = "t4g.micro" + instance_type = "t3.micro" region = "us-gov-west-1" - source_ami = "ami-014172793a1595e6c" # Updated AMI ID for RHEL 9 ARM + source_ami = "ami-03f5c6b8195c66b04" # Updated AMI ID for RHEL 9 ARM ssh_username = "ec2-user" }