alpine-zdt-images/configs/cloud/aws.conf
Stefan Reimer 5d0009b5f8 Squashed 'alpine-cloud-images/' content from commit 59d83fd
git-subtree-dir: alpine-cloud-images
git-subtree-split: 59d83fdf536c111dd48525430a6ce3d4028d6f8b
2023-04-28 10:12:12 +00:00

41 lines
950 B
Plaintext

# vim: ts=2 et:
cloud_name = Amazon Web Services
image_format = vhd
kernel_modules {
ena = true
nvme = true
}
kernel_options {
"nvme_core.io_timeout=4294967295" = true
}
initfs_features {
ena = true
nvme = true
}
# TODO: what about IPv6-only networks?
# maybe we only set it for <= 3.17, and leave it to dhcpcd?
ntp_server = 169.254.169.123
access.PUBLIC = true
regions.ALL = true
cloud_region_url = "https://{region}.console.aws.amazon.com/ec2/home#Images:visibility=public-images;imageId={image_id}",
cloud_launch_url = "https://{region}.console.aws.amazon.com/ec2/home#launchAmi={image_id}"
WHEN {
aarch64 {
# new AWS aarch64 default...
kernel_modules.gpio_pl061 = true
initfs_features.gpio_pl061 = true
WHEN {
"3.14 3.13 3.12" {
# ...but not supported for older versions
kernel_modules.gpio_pl061 = false
initfs_features.gpio_pl061 = false
}
}
}
}