From c84e79ed9f88a5256f275d6e56c8c99d9fc363ef Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Thu, 13 Feb 2025 12:39:38 -0600 Subject: [PATCH] Added aws alpine platform Had to specify t3 instead of t2 as alpine images require EUFI which are available in t3. Ticket: none --- cf_remote/cloud_data.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/cf_remote/cloud_data.py b/cf_remote/cloud_data.py index e5357bb..4407cca 100644 --- a/cf_remote/cloud_data.py +++ b/cf_remote/cloud_data.py @@ -18,6 +18,21 @@ "name_pattern": "debian-{version}*", "user": "admin", }, + "alpine": { + "owner_id": "538276064493", + "name_pattern": "alpine-{version}-*", + "user": "alpine", + "sizes": { + "x86_64": { + "size": "t3.micro", + "xlsize": "t3.xlarge", + }, + "arm64": { + "size": "t4g.micro", + "xlsize": "t4g.xlarge", + }, + }, + }, "ubuntu-16": { "owner_id": "099720109477", "name_pattern": "ubuntu-pro-server/images/hvm-ssd/ubuntu-xenial-16.04-amd64-pro-server*",