Skip to content

Commit

Permalink
Update base AMI to Debian Bookworm
Browse files Browse the repository at this point in the history
Debian Bookworm was officially released on June 10,2023.
  • Loading branch information
jsf9k committed Jan 12, 2024
1 parent 34cbea7 commit 34ca551
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/packer.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ variable "skip_create_ami" {
type = bool
}

data "amazon-ami" "debian_bullseye" {
data "amazon-ami" "debian_bookworm" {
filters = {
name = "debian-11-amd64-*"
name = "debian-12-amd64-*"
root-device-type = "ebs"
virtualization-type = "hvm"
}
Expand Down Expand Up @@ -93,7 +93,7 @@ source "amazon-ebs" "example" {
region = var.build_region
region_kms_key_ids = var.region_kms_keys
skip_create_ami = var.skip_create_ami
source_ami = data.amazon-ami.debian_bullseye.id
source_ami = data.amazon-ami.debian_bookworm.id
ssh_username = "admin"
subnet_filter {
filters = {
Expand All @@ -102,9 +102,9 @@ source "amazon-ebs" "example" {
}
tags = {
Application = "Example"
Base_AMI_Name = data.amazon-ami.debian_bullseye.name
Base_AMI_Name = data.amazon-ami.debian_bookworm.name
GitHub_Release_URL = var.release_url
OS_Version = "Debian Bullseye"
OS_Version = "Debian Bookworm"
Pre_Release = var.is_prerelease
Release = var.release_tag
Team = "VM Fusion - Development"
Expand Down

0 comments on commit 34ca551

Please sign in to comment.