Skip to content

Commit

Permalink
Fixes #18: updates configs to AlmaLinux OS 8.4 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
ezamriy committed Jun 1, 2021
1 parent 5fb9093 commit cc5a56d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions almalinux-8-aws.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ build {

// comment this out if you don't want to import AMI to Amazon EC2 automatically
post-processor "amazon-import" {
ami_name = "AlmaLinux OS 8.3 x86_64"
ami_description = "Official AlmaLinux OS 8.3 x86_64 image"
ami_name = "AlmaLinux OS 8.4 x86_64"
ami_description = "Official AlmaLinux OS 8.4 x86_64 image"
ami_groups = ["all"]
s3_bucket_name = var.aws_s3_bucket_name
license_type = "BYOL"
Expand Down
2 changes: 1 addition & 1 deletion bin/aws_ami_mirror.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def main(sys_args):
with open(args.csv_output, 'w') as csv_fd:
csv_writer = csv.writer(csv_fd, dialect='unix')
for dst_region, dst_ami_id in sorted(public_amis.items()):
row = ('AlmaLinux OS', '8.3', dst_region, dst_ami_id, 'x86_64')
row = ('AlmaLinux OS', '8.4', dst_region, dst_ami_id, 'x86_64')
csv_writer.writerow(row)
md_rows.append(row)
with open(args.md_output, 'w') as fd:
Expand Down
4 changes: 2 additions & 2 deletions variables.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ variables {
//
// common variables
//
iso_url = "https://repo.almalinux.org/almalinux/8.3/isos/x86_64/AlmaLinux-8.3-x86_64-boot.iso"
iso_checksum = "file:https://repo.almalinux.org/almalinux/8.3/isos/x86_64/CHECKSUM"
iso_url = "http://repo.almalinux.org/almalinux/8.4/isos/x86_64/AlmaLinux-8.4-x86_64-boot.iso"
iso_checksum = "file:http://repo.almalinux.org/almalinux/8.4/isos/x86_64/CHECKSUM"
headless = true
boot_wait = "10s"
cpus = 2
Expand Down

0 comments on commit cc5a56d

Please sign in to comment.