Hi,
I was looking at the announcement of the Balena OS AMI images - BalenaOS AWS Amazon Machine Images now available
but the images don’t seem to be available anymore?
aws ec2 describe-images --filters "Name=name,Values=balenaOS*" --no-cli-pager
{
"Images": []
}
Should I look somewhere else?
regards,
Robert
to answer my own question: yes, you should look somewhere else 
aws ec2 describe-images --region us-east-1 --filters "Name=name,Values=balenaOS*"
{
"Images": [
{
"Architecture": "x86_64",
"CreationDate": "2022-12-20T15:23:44.000Z",
"ImageId": "ami-0799401323b99ed4c",
"ImageLocation": "491725000532/balenaOS-2.108.3-rev1-generic-amd64",
"ImageType": "machine",
"Public": true,
"OwnerId": "491725000532",
"PlatformDetails": "Linux/UNIX",
"UsageOperation": "RunInstances",
"State": "available",
"BlockDeviceMappings": [
{
"DeviceName": "/dev/sda1",
"Ebs": {
"DeleteOnTermination": true,
"SnapshotId": "snap-052741b691251d183",
"VolumeSize": 8,
"VolumeType": "gp2",
....
Ha! Glad you found them @robertbakker, at least you shared here to save the next person some time. 