From 53313d2b914de9ea53e080dcc44de7f21214d02b Mon Sep 17 00:00:00 2001 From: lolli001 Date: Fri, 19 Jul 2024 17:08:21 -0400 Subject: [PATCH] Updated AMI --- main.tf | 2 +- modules/image-pipeline/build.pkr.hcl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index 73ff95e..694be33 100644 --- a/main.tf +++ b/main.tf @@ -142,7 +142,7 @@ module "rhel-arm" { goss_profile = "rhel-arm-base-test" state = local.state_config vpc_config = local.vpc_config - source_ami = "ami-0fac797136d219c79" # Updated AMI ID for RHEL 9 ARM + source_ami = "ami-014172793a1595e6c" # Updated AMI ID for RHEL 9 ARM instance_type = "t4g.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 b24e3e6..f8f1b07 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-0fac797136d219c79" # Updated AMI ID for RHEL 9 ARM + source_ami = "ami-014172793a1595e6c" # Updated AMI ID for RHEL 9 ARM ssh_username = "ec2-user" }