#
Enterprise 2025 Platforms
Enterprise Evaluation 2025 uses the following platforms:
linux-ubuntu-noble(Ubuntu 24.04)linux-kaliwindows-desktop-11windows-server-2022
Lookups for Amazon Machine Images (AMIs) of these platforms is managed in the modules/aws/amis Terraform module.
#
Windows 11
IMPORTANT: AWS does not currently provide a pre-built Windows 11 Amazon Machine Image (AMI). You must provide your own Windows 11 AMI for use in the environment.
Please review the Amazon and Microsoft terms of service to ensure you are compliant with all licensing guidelines.
#
Build & Import AMI
One method of building and converting a Windows 11 VM into an AMI uses:
- Packer to automate the build of a Windows 11 VM from the installation image.
- Packer to upload the virtual machine file to an AWS S3 bucket.
- AWS VM Import to convert the VM to an AMI.
AWS provides additional documentation on importing a Windows 11 VM.
#
Module References
If you completed the import process above, the following references must be changed to create Windows 11 EC2 instances from your new Windows 11 AMI. Please see the referenced files in modules/aws/amis.
Depending on how the AMI is named, tagged, or accessed, you can either:
- Change the reference in
amis-windows.tfto your hardcoded value:
#### (1) Comment out the Windows 11 data block query
# #-----------------------------------------------------------------------------------------------------------------------
# # Windows Desktop
# #-----------------------------------------------------------------------------------------------------------------------
# data "aws_ami" "windows-desktop-11" {
# most_recent = true
# owners = [local.owners.windows-desktop-11]
# filter {
# name = "name"
# values = [local.name_query.windows-desktop-11]
# }
# }
#### (2) Set this output to the Win11 AMI ID under your account
output "windows-desktop-11" {
value = "ami-0123abcd4567efgh"
}
- Change the
windows-desktop-11references inlocals.tf:
## in locals.tf
locals {
name_query = {
#### (1) Change filter to Win11 AMI name
windows-desktop-11: "Windows_Server-2022-English-Full-Base*"
windows-server-2022: "Windows_Server-2022-English-Full-Base*"
linux-kali: "kali-*2025*"
linux-ubuntu-noble: "ubuntu/images/hvm-ssd-gp3/ubuntu-noble-24.04-amd64-server-*"
}
owners = {
#### (2) Change owner to "self"
windows-desktop-11: "amazon"
windows-server-2022: "amazon"
linux-kali: "679593333241"
linux-ubuntu-noble: "099720109477"
}
}